Jump Statements (C++)
A C++ jump statement performs an immediate local transfer of control.
break;
continue;
return [expression];
goto identifier;
Remarks
See the following topics for a description of the C++ jump statements.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
A C++ jump statement performs an immediate local transfer of control.
break;
continue;
return [expression];
goto identifier;
See the following topics for a description of the C++ jump statements.