Statements

Statements are fragments of the C program that are executed in sequence. The body of any function is a compound statement, which, in turn is a sequence of statements and declarations:

2016-10-10 18:36:17
Type

(See also arithmetic types for the details on most

2016-10-10 18:36:31
Union declaration

A union is a type consisting of a sequence of members whose storage overlaps (as opposed to struct, which is a type consisting of a sequence of members whose storage is allocated

2016-10-10 18:36:36
if statement

Conditionally executes code. Used where code needs to be executed only if some condition is true. Syntax

2016-10-10 18:35:25
Struct declaration

A struct is a type consisting of a sequence of members whose storage is allocated in an ordered sequence (as opposed to union, which is a type consisting of a sequence of members

2016-10-10 18:36:24
Lifetime

Every object in C exists, has a constant address, retains its

2016-10-10 18:35:46
Objects and alignment

C programs create, destroy, access, and manipulate objects. An object, in C, is region of

2016-10-10 18:36:02
Generic selection

Provides a way to choose one of several expressions at compile time, based on a type of a controlling expression. Syntax

2016-10-10 18:35:22
_Noreturn function specifier

Specifies that the function does not return to its point of invocation. Syntax

2016-10-10 18:36:51
Alternative operator representations

C source code may be written in any non-ASCII 7-bit character set that includes the

2016-10-10 18:34:29