#include<stdio.h>
#include<stdlib.h>
struct st1
{
};
struct st2
{
};
int main()
{
printf("%d and %d",sizeof(st1),sizeof(st2));
system("PAUSE");
return 0;
}
O(∩_∩)O~,输出结果是什么?
windows环境下,在dev c++ and Vc++中为 16
在Linux 环境下 , GCC编译结果为