摘要: 一个很好玩的现象:源代码:#include int main(){ int a = 10000; float b = 55.55; int c = 9988; printf("a : %f \n",a); printf("c : %f \n",c); printf("b : %d \n",(int)b); printf("a : %f \n",a); printf("c : %f \n",c); printf("b : %f \n",b); printf(... 阅读全文
posted @ 2013-09-18 21:37 godjesse 阅读(1925) 评论(0) 推荐(0) 编辑
摘要: 源代码: 1 #include 2 struct smonth // point 1 3 { 4 int a; 5 int b; 6 }; 7 8 int func1() 9 {10 struct smonth{11 int a;12 int b;13 };14 15 typedef int LOVE; // point 216 17 LOVE a = ... 阅读全文
posted @ 2013-09-18 17:12 godjesse 阅读(1659) 评论(0) 推荐(0) 编辑