Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 994 Bytes

File metadata and controls

42 lines (34 loc) · 994 Bytes
title Jump Statements (C++) | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-language
ms.tgt_pltfrm
ms.topic language-reference
dev_langs
C++
helpviewer_keywords
jump statements
ms.assetid 7d8ff59c-b1bd-4164-85e9-f508851ed62c
caps.latest.revision 9
author mikeblome
ms.author mblome
manager ghogen

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