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

The preprocessor supports text macro replacement and function-like text macro replacement. Syntax

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

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

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

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

2025-01-10 15:47:30
const 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
while loop
  • References/C, C++/C/C language

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

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

Every C program contains the definition (not the prototype) of a function called main, which is the designated start of the program.

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

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

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

Escape sequences are used to represent certain special characters within

2025-01-10 15:47:30
inline function specifier
  • References/C, C++/C/C language

Declares an inline function.

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

Queries size of the object or type. Used when actual size of the object must be known. Syntax

2025-01-10 15:47:30