Member access operators
  • References/C, C++/C/C language

Member access operators allow access to the members of their operands. Operator

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

Queries the alignment requirement of its operand type. Syntax

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

Implementation defined behavior is controlled by #pragma 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
goto statement
  • References/C, C++/C/C language

Transfers control unconditionally to the desired location. Used when it is otherwise impossible to transfer control to the desired location

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
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