fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. if (1)
  6. {
  7. printf("a\n");
  8. break;
  9. printf("b\n");
  10. }
  11.  
  12. return 0;
  13. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:8:3: error: break statement not within loop or switch
   break;
   ^
stdout
Standard output is empty