fork download
  1. #define bool
  2. #define x 666
  3.  
  4.  
  5. #ifdef bool
  6. #undef bool
  7. #define bool _Bool
  8. #define x 222
  9. #define false 0
  10. #endif
  11.  
  12. int main(void) {
  13. printf("%d", x);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
222