When we using continue statement in loops then it break the execution and start the loop with current value of variable.
Syntax-
loop(condition)
{
continue;
}
program-
#include < stdio.h>
int main()
{
int i;
for(i=0;i< 10;i++)
{
if(i< 7)
continue;
printf("i=%dn",i);
}
}
i=7
i=8
i=9