typeid operator
  • References/C, C++/C++/Language

Queries information of a type. Used where the dynamic type of a polymorphic object must be known and for static type identification.

2025-01-10 15:47:30
character literal
  • References/C, C++/C++/Language

Syntax ' c-char ' (1)

2025-01-10 15:47:30
goto statement
  • References/C, C++/C++/Language

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

2025-01-10 15:47:30
User-defined literals
  • References/C, C++/C++/Language

Allows integer, floating-point, character, and string literals to produce objects of user-defined type by defining a user-defined suffix.

2025-01-10 15:47:30
Static Assertion
  • References/C, C++/C++/Language

Performs compile-time assertion checking. Syntax

2025-01-10 15:47:30
Bit field
  • References/C, C++/C++/Language

Declares a class data member with explicit size, in bits. Adjacent bit field members may be packed to share and straddle the individual bytes. A

2025-01-10 15:47:30
Fundamental types
  • References/C, C++/C++/Language

(See also type for type system overview and

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

Executes a for loop over a range. Used as a more readable equivalent to the traditional

2025-01-10 15:47:30
Constant expressions
  • References/C, C++/C++/Language

Defines an expression that can be evaluated at compile

2025-01-10 15:47:30
Comparison operators
  • References/C, C++/C++/Language

Compares the arguments. Operator name Syntax

2025-01-10 15:47:30