Default arguments
  • References/C, C++/C++/Language

Allows a function to be called without providing one or more trailing arguments. Indicated by using the following syntax for a parameter in

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
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
Dependent names
  • References/C, C++/C++/Language

Inside the definition of a template (both

2025-01-10 15:47:30
Storage class specifiers
  • References/C, C++/C++/Language

The storage class specifiers are a part of the decl-specifier-seq of a

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

Syntax ' c-char ' (1)

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
Logical operators
  • References/C, C++/C++/Language

Returns the result of a boolean operation. Operator name Syntax

2025-01-10 15:47:30
Explicit type conversion
  • References/C, C++/C++/Language

Converts between types using a combination of explicit and implicit conversions. Syntax

2025-01-10 15:47:30
Using-declaration
  • References/C, C++/C++/Language

Introduces a name that is defined elsewhere into the declarative region where this using-declaration appears.

2025-01-10 15:47:30