Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 755 Bytes

jump-statements-cpp.md

File metadata and controls

35 lines (24 loc) · 755 Bytes
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Jump Statements (C++)
Jump Statements (C++)
11/04/2016
jump statements
7d8ff59c-b1bd-4164-85e9-f508851ed62c

Jump Statements (C++)

A C++ jump statement performs an immediate local transfer of control.

Syntax

break;
continue;
return [expression];
goto identifier;

Remarks

See the following topics for a description of the C++ jump statements.

See also

Overview of C++ Statements