Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 1.73 KB

statements-c.md

File metadata and controls

32 lines (30 loc) · 1.73 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
Statements (C) | Microsoft Docs
11/04/2016
cpp-language
article
C++
statements, C
Visual C, statements
statements
df3891cd-6195-4663-aecf-7fe7dc3ed9c3
7
mikeblome
mblome
ghogen

Statements (C)

The statements of a C program control the flow of program execution. In C, as in other programming languages, several kinds of statements are available to perform loops, to select other statements to be executed, and to transfer control. Following a brief overview of statement syntax, this section describes the C statements in alphabetical order:

break statement if statement
compound statement null statement
continue statement return statement
do-while statement switch statement
expression statement try-except statement
for statement try-finally statement
goto and labeled statements while statement

See Also

C Language Reference