为了成为自由自在的人而奋斗!
分类: C/C++
2011-05-23 15:15:47
#include
/* #if #elif #endif */
#ifndef SET_LINE100
#define SET_LINE100
#line 100
#elif
//
#else
//
#endif
#if 0
#else
#define PRINTX(x) printf(#x" = %d\n", x);
#define cat2(x, y) x ## y
#define xcat2(x, y) cat2(x, y)
#endif
int main(void)
{
int i = 1;
printf("file :%s Line :%d Date :%s Time :%s Std:%d\n",
__FILE__, __LINE__, __DATE__, __TIME__, __STDC__);
#if 0
;
#else
PRINTX(i);
printf("%f\n", xcat2(cat2(1, 0), 2.3));
#endif
return 0;
}