1 // Simple tests of the C preprocessor 2 3 #define A 1 4 #define A (4 / 2) 5 #define B 1 // This is a comment. With a / in it. 6 main()7 int main() { 8 return A + B; 9 } 10