发布时间:2013-05-18 15:47:58
#include #define __DEBUG__#ifdef __DEBUG__#define DEBUG(format,...) printf("File: %s, Line: %d, Function: %s: "format"\n", __FILE__,__LINE__,__FUNCTION__, ##__VA_ARGS__) #else#define DEBUG(format,...)#endifint main(int argc,char *argv[]){ DEBUG("example");.........【阅读全文】
发布时间:2013-05-18 14:12:11
#include /* *typedef *typedef只是给一个类型命名一个别名,不是产生一个新的类型 *在这个例子中,是将struct _struct_test这个结构体类型起个别名叫struct_test */typedef struct _struct_test{ int a; char b; double c; .........【阅读全文】