summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/05/main.c b/05/main.c
index 90f5b79..058573f 100644
--- a/05/main.c
+++ b/05/main.c
@@ -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) {
}