Go to the first, previous, next, last section, table of contents.


loop, break, return, continue

There are three kinds of statements for loops (repetitions): the while statement, the for statement, and the do statement.

As means for exiting from loops, there are break statement and return statement. The continue statement allows to move the control to a certain point of the loop.


Go to the first, previous, next, last section, table of contents.