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

This is a brief reference of available C++ language constructs.

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

Executes init-statement once, then executes statement and iteration_expression repeatedly

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

Initializes an object from another object. Syntax

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

A template is a C++ entity that defines one of the following: a family of classes (

2025-01-10 15:47:30
Filename and line information
  • References/C, C++/C++/Language

Changes the current file name and number in the preprocessor. Syntax

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

Shows given message and renders program ill-formed. Syntax

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
Class template
  • References/C, C++/C++/Language

A class template defines a family of classes. Syntax

2025-01-10 15:47:30