fork download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. int main(void) {
  6. #define ATMTA
  7.  
  8. #ifdef testtest
  9. printf("sss\n");
  10. #endif
  11.  
  12.  
  13. #ifdef ATMTA
  14. printf("YOBA1\n");
  15. printf("YOBA1\n");
  16. #define testtest
  17. #endif
  18.  
  19.  
  20. #undef ATMTA
  21.  
  22. #ifdef ATMTA
  23. printf("YOBA2\n");
  24. printf("YOBA2\n");
  25. #endif
  26.  
  27. #ifdef testtest
  28. printf("sss\n");
  29. #endif
  30.  
  31. return 0;
  32. }
Success #stdin #stdout 0s 1788KB
stdin
stdout
YOBA1
YOBA1
sss