标签:eof short return stdio.h 空间 std sizeof print 输出
#include <stdio.h>
int main()
{
int a;
short b;
printf("%d %d", sizeof(a), sizeof(b));//结果 4 和2
return 0;
}
#include <stdio.h>
int main()
{
int a[100];
short b;
printf("%d %d", sizeof(a), sizeof(b));///输出结果为400 2 ;400=4×100
return 0;
}
标签:eof short return stdio.h 空间 std sizeof print 输出
原文地址:http://www.cnblogs.com/wshyj/p/6032491.html