auto specifier
  • References/C, C++/C++/Language

Specifies that the type of the variable that is being declared will be automatically deduced from its initializer. For functions, specifies that the return type is a trailing

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

Syntax nullptr

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

Classes and structs are user-defined types, defined by class-specifier, which appears in decl-specifier-seq of the

2025-01-10 15:47:30
reference initialization
  • References/C, C++/C++/Language

Binds a reference to an object. Syntax T

2025-01-10 15:47:30
Alternative operator representations
  • References/C, C++/C++/Language

C++ (and C) source code may be written in any non-ASCII 7-bit character set that includes the

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

Comments serve as a sort of in-code documentation. When inserted into a program, they are effectively ignored by the compiler; they are solely intended to be used as notes

2025-01-10 15:47:30
Value categories
  • References/C, C++/C++/Language

Each C++ expression (an operator with its operands, a

2025-01-10 15:47:30
explicit specifier
  • References/C, C++/C++/Language

Specifies constructors and conversion operators (since C++11)

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

The friend declaration appears in a class body and grants

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

A union is a special class type that can hold only one of its non-static

2025-01-10 15:47:30