First page Back Continue Last page Graphics
break & continue (cont.)
break causes program execution to pass to the next statement following the switch statement.
(see jump.cpp for an example)
continue is used inside a loop body and causes program control to skip the remainder of the statements in a loop body and start a new loop cycle.
Doesn't skip the loop update expression
(see jump.cpp for an example)