diff options
Diffstat (limited to '05/main.c')
-rw-r--r-- | 05/main.c | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1,4 +1,16 @@ -#define TEST(x,y,z) x##y#z -TEST(22,4594,hello there folks) +#define STRINGIFY2(x) #x +#define STRINGIFY(x) STRINGIFY2(x) +#define X 22 +STRINGIFY(X) + + +#define E 5 +#define D E +#define C D +#define B C +#define A B + +int x = E; + main(void) { } |