题解分享
题解分享简介
存储大小 - 题解
```
#include <bits/stdc++.h>
using namespace std;
int main()
{
int m = 2;
short n = 2;
size_t a = sizeof(m);
size_t b = sizeof(n);
cout << a << " " << b;
return 0;
}
```
0
0
0
0



