摘要: C语言的显式/隐式类型转换,都有一个中间变量的存在,原数据的类型、内容都不变。以下代码,都用GCC编译。 1 #include 2 3 int main() 4 { 5 char c = 'a'; 6 printf("%d %d %d\n", c, sizeof(c), sizeo... 阅读全文
posted @ 2014-09-01 15:56 阿杰的专栏 阅读(1619) 评论(5) 推荐(0) 编辑