string literal
  • References/C, C++/C++/Language

Syntax " (unescaped_character|

2025-01-10 15:47:30
Constraints and concepts
  • References/C, C++/C++/Language

This page describes an experimental core language feature. For named type requirements used in the specification of the standard library, see

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
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
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
enumeration declaration
  • References/C, C++/C++/Language

An enumeration is a distinct type whose value is restricted to one of several explicitly named constants ("enumerators"). The values of the constants are values

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
cv type qualifiers
  • References/C, C++/C++/Language

Appear in any type specifier, including decl-specifier-seq of

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

Enables implicit conversion or

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

In a member-specification of a class/struct

2025-01-10 15:47:30