fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. goto L1;
  6. int i = 1;
  7. L1:
  8. printf("%d\n", i);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4388KB
stdin
Standard input is empty
stdout
0