fork download
  1. #include <stdio.h>
  2.  
  3. #define FALSE TRUE
  4.  
  5. int main(void) {
  6. printf("%i", FALSE);
  7. return 0;
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:3:15: error: ‘TRUE’ undeclared (first use in this function)
 #define FALSE TRUE
               ^
prog.c:6:18: note: in expansion of macro ‘FALSE’
     printf("%i", FALSE);
                  ^
prog.c:3:15: note: each undeclared identifier is reported only once for each function it appears in
 #define FALSE TRUE
               ^
prog.c:6:18: note: in expansion of macro ‘FALSE’
     printf("%i", FALSE);
                  ^
stdout
Standard output is empty