fork(14) download
  1. #include <cstdio>
  2.  
  3. int main(){
  4. int a = -1;
  5.  
  6. if (a<0)
  7. goto in;
  8.  
  9. out:
  10. printf("out");
  11.  
  12. in:
  13. printf("in");
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
in