Previous PageNext Page

7.5.11 Labeled Statement

Provides an identifier for a statement.
 

Syntax

label :

statement

label
A unique identifier used when referring to the labeled statement.
statement
The statement associated with label. May be a compound statement.

Remarks

Labels are used by the break and continue statements to specify the statement to which the break and continue apply.
 

Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page