fork(1) download
  1. #include<stdio.h>
  2.  
  3. #define rsAssert(v) if(!(v)) printf("rsAssert failed: %s, in %s at %i", #v, __FILE__, __LINE__);
  4.  
  5. int main()
  6. {
  7. if(1)
  8. rsAssert(0);
  9. else
  10. printf("mr.32");
  11. return 0;
  12. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:9: error: ‘else’ without a previous ‘if’
stdout
Standard output is empty