#include directive
  • References/C, C++/C/C language

Includes another source file into the current source file at the line immediately after the directive. Syntax

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

(See also arithmetic types for the details on most

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

When initializing an object of

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

When initializing an object of scalar type, the initializer must

2025-01-10 15:47:30
Union declaration
  • References/C, C++/C/C language

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

2025-01-10 15:47:30
for loop
  • References/C, C++/C/C language

Executes a loop. Used as a shorter equivalent of while

2025-01-10 15:47:30
floating constant
  • References/C, C++/C/C language

Allows values of floating type to be used directly in expressions. Syntax A floating constant is a

2025-01-10 15:47:30
volatile type qualifier
  • References/C, C++/C/C language

Each individual type in the C type system has several qualified versions of

2025-01-10 15:47:30
C Operator Precedence
  • References/C, C++/C/C language

The following table lists the precedence and associativity of C operators. Operators are listed top to bottom, in descending precedence.

2025-01-10 15:47:30
Thread storage duration
  • References/C, C++/C/C language

An object whose identifier is declared with the storage-class specifier _Thread_local (since C11) has thread storage

2025-01-10 15:47:30