try-block
  • References/C, C++/C++/Language

Associates one or more exception handlers (catch-clauses) with a compound statement. Syntax

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

Transfers control unconditionally. Used when it is otherwise impossible to transfer control to the desired location using other statements.

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

Syntax this

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

Returns the result of a boolean operation. Operator name Syntax

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

Introduces a name that is defined elsewhere into the declarative region where this using-declaration appears.

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

Declares a variable of a pointer or pointer-to-member type. Syntax A pointer declaration is any simple

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

Executes a for loop over a range. Used as a more readable equivalent to the traditional

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

(See also type for type system overview and

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

Allows a function to be called without providing one or more trailing arguments. Indicated by using the following syntax for a parameter in

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

A function template defines a family of functions. Syntax

2025-01-10 15:47:30