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

Queries alignment requirements of a type. Syntax

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

Namespace aliases allow the programmer to define an alternate name for a namespace. They are commonly used as a convenient shortcut for long

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

Allows customizing the template code for a given set of template arguments. Syntax

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

Allows a function to accept any number of arguments. Indicated by the parameter of the form ... which must appear last in the

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

Conditionally executes another statement. Used where code needs to be executed based on a run-time condition.

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

constexpr - specifies that the value of a variable or function can appear in

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

A program shall contain a global function named main, which is the designated start of the program.

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

Returns the result of specific arithmetic operation. Operator name Syntax

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

Defines the semantics of computer memory storage for the purpose of the C++ abstract machine. The memory available to a C++ program is one or

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