continue Statement in C

Notes:

continue Statement in C Programming Language:

continue statement: It continues the loop
Computer skips statement(s) under the continue statement, and transfers the control
to the condition part of the loop in the context of while and do while loops
whereas in the context of for loop, control is transferred to increment / decrement part.

Syntax:
continue;

Ex: continue inside for loop
int i=0;
for(i=1; i<6; i++)
{
if(i==3)
{
continue;
}
printf("%d\n",i);
}