fork download
  1. #include <stdio.h>
  2.  
  3. #define boo 0
  4.  
  5. enum boolean { FAILURE = 1, SUCCESS };
  6.  
  7. int main() {
  8. printf("%d %d", FAILURE, SUCCESS);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
1 2