fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i;
  5. for(i=0;i<10;i++)
  6. {printf("Hi");
  7. if(i==5)
  8. {continue;}
  9. printf("hello");}
  10.  
  11.  
  12. printf("finished");
  13.  
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
HihelloHihelloHihelloHihelloHihelloHiHihelloHihelloHihelloHihellofinished