1 2 3 4 5 6 7 8 9 10 11
#define A 3 #define FOO(X,Y,Z) X + Y + Z #define SEMI ; int main() { if(FOO(1, 2, A) != 6) return 1 SEMI return FOO(0,0,0); }