Functions
  • References/C, C++/C++/Language

Functions are C++ entities that associate a sequence of statements

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

Syntax true (1)

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

C++ programs create, destroy, refer to, access, and manipulate objects. An object, in C++, is a region of storage that has.

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

Every object has a lifetime, which is a runtime property:

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

Terminates current function and returns specified value to the caller function. Syntax

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

Initialization of a variable provides its initial value at the time of construction. The initial value may be provided in the initializer

2025-01-10 15:47:30
Source file inclusion
  • References/C, C++/C++/Language

Includes other source file into current source file at the line immediately after the directive . Syntax

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

Constructs a closure:

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

An identifier is an arbitrary long sequence of digits, underscores, lowercase and uppercase Latin letters, and Unicode characters. A valid identifier must begin with

2025-01-10 15:47:30
Template parameters and template arguments
  • References/C, C++/C++/Language

Every template is parametrized by one or more template parameters

2025-01-10 15:47:30