Member access operators

Member access operators allow access to the members of their operands. Operator

2016-10-10 18:35:54
Pointer declaration

Pointer is a type of an object that refers to a function or an object of another type, possibly adding qualifiers. Pointer may also refer to nothing, which is indicated by

2016-10-10 18:36:04
_Alignof operator

Queries the alignment requirement of its operand type. Syntax

2016-10-10 18:36:50
return statement

Terminates current function and returns specified value to the caller function. Syntax

2016-10-10 18:36:09
Memory model

Defines the semantics of computer memory storage for the purpose of the C abstract machine. The data storage (memory) available to a C program

2016-10-10 18:35:55
Storage-class specifiers

Specify storage duration and linkage of objects and functions: auto - automatic duration and no linkage

2016-10-10 18:36:18
Conversions

Several operators convert operand values from one type to another automatically. This subclause specifies the result required from such an implicit conversion, as well as those

2016-10-10 18:34:59
Array declaration

Array is a type consisting of a contiguously allocated nonempty sequence of objects with a particular element type. The number of those objects (the array size) never

2016-10-10 18:34:32
while loop

Executes a statement repeatedly, until the value of expression becomes equal to zero. The test takes place before each

2016-10-10 18:36:47
#pragma directive

Implementation defined behavior is controlled by #pragma directive. Syntax

2016-10-10 18:34:28