Continue Statement



next up previous contents index
Next: Tagcase Statement Up: Statements Previous: Break Statement

Continue Statement

The continue statement has the form
continue
Its effect is to terminate execution of the body of the nearest for or while statement that contains the continue, and to start the next cycle of that loop (if any). It is a compile-time error to use continue outside the body of a for or while statement.



theta-questions@lcs.mit.edu