fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int index;
  6. for(index=1; index<=5; index++)
  7. {
  8.  
  9.  
  10. printf("%d", index);
  11. if (index==3)
  12. continue;
  13. }
  14. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
12345