6.8.6 Jump statements

Previous Table of Contents

1768

jump-statement:
                goto identifier ;
                continue ;
                break ;
                return expressionopt ;

1769 A jump statement causes an unconditional jump to another place.

1770 134) Thus, clause-1 specifies initialization for the loop, possibly declaring one or more variables for use in the loop;

1771 the controlling expression, expression-2, specifies an evaluation made before each iteration, such that execution of the loop continues until the expression compares equal to 0;

1772 and expression-3 specifies an operation (such as incrementing) that is performed after each iteration.

Next

Created at: 2005-06-29 02:19:03 The text from WG14/N1124 is copyright © ISO