fork download
  1. #include <stdio.h>
  2. #define A 5
  3.  
  4.  
  5. int main()
  6. {
  7. const int B = A;
  8. #undef A
  9. #define A 3
  10. printf("%d %d\n", B,A);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
5 3