break statement
  • References/C, C++/C++/Language

Causes the enclosing for,

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

Transfers control to one of the several statements, depending on the value of a condition. Syntax

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

Name lookup is the procedure by which a name

2025-01-10 15:47:30
Unqualified name lookup
  • References/C, C++/C++/Language

For an unqualified name, that is a name that does not appear to the right of a scope resolution operator ::, name lookup examines the

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

A copy assignment operator of class T is a non-template non-static member function with the name operator= that takes exactly one parameter of type

2025-01-10 15:47:30
Qualified name lookup
  • References/C, C++/C++/Language

A qualified name is a name that appears on the right hand side of the scope resolution operator :: (see also qualified identifiers). A qualified name may

2025-01-10 15:47:30
Phases of translation
  • References/C, C++/C++/Language

The C++ source file is processed by the compiler as if the following phases take place, in this exact order: Phase 1

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

Provides for linkage between modules written in different programming languages. extern

2025-01-10 15:47:30
Replacing text macros
  • References/C, C++/C++/Language

The preprocessor supports text macro replacement. Function-like text macro replacement is also supported. Syntax

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

Definitions are declarations that fully define

2025-01-10 15:47:30