Continue Statement Definition
Previous Topic  Next Topic 

The continue_statement causes the rest of the statements inside the loop to be skipped and the program jumps to the condition which decides whether to repeat the loop. In the case of a for-loop, the end_expr_list is executed before the conditional expression is tested.    The syntax is:


continue ;