string literals
  • References/C, C++/C/C language

Constructs an unnamed object of specified character array type in-place, used when a character string needs to be embedded in source code.

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

Causes the remaining portion of the enclosing for,

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
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
Order of evaluation
  • References/C, C++/C/C language

Order of evaluation of the operands of any C operator, including the order of evaluation of function arguments in a function-call expression, and the order of evaluation of

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
Functions
  • References/C, C++/C/C language

A function is a C language construct that associates a compound statement (the function body) with an

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
#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
Other operators
  • References/C, C++/C/C language

A collection of operators that do not fit into any of the other major categories.

2025-01-10 15:47:30