摘要: 8.int a=7,;int b=8;printf(”%d“,a&b); 7:0.....0 0......0 0.......0 00000111 8:0......0 0......0 0.......0 00001000 都为1时为1,其他为0;所以输出值为:0 9.int a=7;int b 阅读全文
posted @ 2016-09-21 13:29 BGD160809321 阅读(87) 评论(1) 推荐(0) 编辑
摘要: 1.C语言基本数据类型及其占用的空间内存大小分别是:int型占4个字节 short(int)型占2个字节 char型占1个字节 Long(int)型占4个字节 unsinged(int)型占4个字节 unsinged short(int)型占2个字节 unsinged long(int)型占4个字节 阅读全文
posted @ 2016-09-21 13:21 BGD160809321 阅读(219) 评论(3) 推荐(0) 编辑