2012年11月30日
摘要: View Code #include <stdio.h>#define MAX(x,y) (x>y?x:y)#define PRINT_INT(x) printf(#x" %d\n",x)#define PRINT_F(x) printf(#x" %f\n",x)#define PRINT_HELLO() \ printf("Hello, World\n")#define GENERIC_MAX(type) \ type type##_max(type x,type y) \ { \ return x>y... 阅读全文
posted @ 2012-11-30 11:46 xunya 阅读(268) 评论(0) 推荐(0) 编辑