Basic concepts
  • References/C, C++/C/C language

This section provides definitions for the specific terminology and the concepts used when describing the C programming language. A C program

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

Executes a statement repeatedly until the value of condition becomes false. The test takes place after each iteration

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

Arithmetic operators apply standard mathematical operations to their operands. Operator

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

An object whose identifier is declared without the storage-class specifier _Thread_local, and either with external or internal linkage or with the storage-class

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
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
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
Storage-class specifiers
  • References/C, C++/C/C language

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

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

This is a reference of the core C language constructs.

2025-01-10 15:47:30