标签:style code span es2017 clu eof argc 关于 font
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(int argc, char const *argv[]) 5 { 6 char *pstr; 7 int a[]={1,2,3,4,5,6}; 8 pstr=(char *)malloc(sizeof(char)*10); 9 printf("%d\n", sizeof(pstr)); 10 printf("%d\n", sizeof(a)); 11 return 0; 12 }
运行结果:
sizeof求的是字节数啊啊啊啊啊啊!!!!!!!!!!!!!!
另:sizeof是一个关键字而不是函数
标签:style code span es2017 clu eof argc 关于 font
原文地址:http://www.cnblogs.com/fallenmoon/p/7598458.html