#include
using namespace std;
int main()
{
int x;
short y;
cout << sizeof(x) << " " << sizeof(y) << endl;
return 0;
}
运行结果:
4 2
欢迎分享,转载请注明来源:内存溢出
#include
using namespace std;
int main()
{
int x;
short y;
cout << sizeof(x) << " " << sizeof(y) << endl;
return 0;
}
运行结果:
4 2
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)