1 #define A B + B 2 #define B C 3 4 int main() { 5 int C = 3; 6 printf("A = %d\n", A); 7 #define C 5 8 printf("A = %d\n", A); 9 return 0; 10 } 11