github.com/Konstantin8105/c4go@v0.0.0-20240505174241-768bb1c65a51/tests/code_quality/define.c (about) 1 #define A 1 2 #define B "hello world" 3 #define C a + 1 4 5 void t() 6 { 7 int a = A; 8 printf(B); 9 int c = C; 10 printf("%d", c); 11 }