对于 sizeof(char)的一些零碎······
摘要:
先看一段简单的c程序 1 #include 2 3 int main(void){ 4 5 char c ='a'; 6 7 printf("the size of 'a' is %d\n",sizeof('a')); 8 printf("the size of c is %d\n",sizeof(c)); 9 printf("the size of char is %d\n",sizeof(char));10 11 return 0;12 }ok,结果如下图: 为啥子· 阅读全文
posted @ 2013-08-14 16:27 イケメンおっさん_汪汪 阅读(183) 评论(0) 推荐(0) 编辑