The continue statement causes the execution
of the next repetition of a loop statement without executing any
of the remaining statements in the loop.
Table 1-11: continue statement
Format
Meaning
do
{
do these commands;
if (condition)
continue;
do these other commands;
}
while (expression);
do this stuff;
If this continue statement
is executed, then the program immediately goes to the “while
(expression)” line, tests the expression,
and performs the next iteration of the loop without executing the
remaining statements in the loop.