Welecome!
全部博文(3)
发布时间:2014-05-29 15:19:01
转载:http://hi.baidu.com/_kouu/item/f29aa131a6228c4a3075a1d9在之前的一个项目中,通过macro来定义了一组位掩码:#define FLAG_TYPE1 0x0001#define FLAG_TYPE2 0x0002#define FLAG_TYPE3 0x0004#define FLAG_TYPE4 0x000.........【阅读全文】
发布时间:2014-05-29 15:11:49
转载:http://hi.baidu.com/_kouu/item/7a726014bdb6d78d88a956d0在论坛上看到类似下面的一段代码:a.c:int a[10]={1,2,3,4,5,6,7,8,9,0};int *b = a;b.c:extern int *a;extern int b[];void main(){int x, y;x = a[3];y = b[3];}编译后运行,在main函数中,x和y分别等于什么呢?用gdb对程序进行调试:.........【阅读全文】