fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int i=5;
  5. if(i==0) goto label;
  6. label:printf("Hello");
  7. printf("hey");
  8. return 0;
  9. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Hellohey