2014年4月10日
摘要: 1 #include 2 3 #define __DEBUG__ 4 5 #ifdef __DEBUG__ 6 #define DEBUG(format,...) printf("File: "__FILE__", Line: %05d: "format"\n", __LINE__, ##__VA_ARGS__) 7 #else 8 #define DEBUG(format,...) 9 #endif10 11 int main(int argc, char **argv) {12 char str[]="Hello Wor 阅读全文
posted @ 2014-04-10 13:25 ~疯子~ 阅读(237) 评论(0) 推荐(0) 编辑