2014年7月23日

c基础总结

摘要: 机器大小端判断: 1 #include 2 3 typedef union{ 4 char x; 5 int i; 6 }un; 7 8 int main() 9 {10 un tt; 11 tt.i = 1;12 13 if(tt.x == 1)... 阅读全文

posted @ 2014-07-23 15:23 阳台 阅读(160) 评论(0) 推荐(0)

导航