sizeof operator
  • References/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
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
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
aggregate initialization
  • References/C, C++/C++/Language

Initializes an aggregate from braced-init-list. Syntax

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

Floating point literal defines a compile-time constant whose value is specified in the source file. Syntax Floating-point

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

Syntax " (unescaped_character|

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
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
do-while loop
  • References/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
Typedef declaration
  • References/C, C++/C++/Language

The typedef declaration provides a way to create an alias that can be used anywhere in place of a (possibly complex) type name. Syntax

2025-01-10 15:47:30