fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x;
  5. for(x=-1; x<=10; x++)
  6. {
  7. if(x < 5)
  8. continue;
  9. else
  10. break;
  11. printf("India");
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 5476KB
stdin
Standard input is empty
stdout
Standard output is empty