Labeled Statements

To transfer program control directly to a given statement, the statement must be labeled. See Using Labels with the goto Statement and Using Labels in the case Statement.

Remarks

There are three types of labeled statements. All use a colon to separate some type of label from the statement. The case and default labels are specific to case (or switch) statements:

identifier : statementcase constant-expression : statementdefault : statement

See Also

Concepts

Overview of C++ Statements

The switch Statement

The switch Statement