static assert declaration
  • References/C, C++/C/C language

Syntax _Static_assert ( expression

2025-01-10 15:47:30
Phases of translation
  • References/C, C++/C/C language

The C source file is processed by the compiler as if the following phases take place, in this exact order. Actual implementation may combine these actions or process

2025-01-10 15:47:30
Array initialization
  • References/C, C++/C/C language

When initializing an object of

2025-01-10 15:47:30
#line directive
  • References/C, C++/C/C language

Changes the current line number and file name in the preprocessor. Syntax

2025-01-10 15:47:30
compound literals
  • References/C, C++/C/C language

Constructs an unnamed object of specified type in-place, used when a variable of array, struct, or union type would be needed only once.

2025-01-10 15:47:30
Assignment operators
  • References/C, C++/C/C language

Assignment and compound assignment operators are binary operators that modify the variable to their left using the value to their right.

2025-01-10 15:47:30
Implicit conversions
  • References/C, C++/C/C language

When an expression is used in the context where a value of a different type is expected, conversion may occur:

2025-01-10 15:47:30
Arithmetic types
  • References/C, C++/C/C language

(See also type for type system overview and

2025-01-10 15:47:30
Function declarations
  • References/C, C++/C/C language

A function declaration introduces an identifier that designates a function

2025-01-10 15:47:30
Variadic arguments
  • References/C, C++/C/C language

Variadic functions are functions that may be called with different number of arguments. Only new-style (prototyped)

2025-01-10 15:47:30