摘要: 1、在什么情况下必须用宏(比如想知道某种内置类型的有符号还是无符号) //比如想知道某种内置类型的是不是有符号类型#include#define ISUNSGINED(type) ((type)0-1>0) void main(){ printf("%d\n",ISUNSGINED(int)); printf("%d\n",ISUNSGINED(unsigned i... 阅读全文
posted @ 2014-03-22 20:45 yexuannan 阅读(224) 评论(0) 推荐(0) 编辑