Continue Statement in C tccicomputercoaching.com Continue statement is used in C to skip the execution of current iteration inside Loop.
It will not stop loop like break statement but just skip current iteration and execute next iteration inside the loop. Example of Continue Statement: 1. for loop for(i=1;i<=10;i++) {
if(i==6) { continue; } printf("hello world\n");
} i
op
=====================================================