noexcept specifier
  • References/C, C++/C++/Language

Specifies whether a function will throw exceptions or not. Syntax

2025-01-10 15:47:30
The as-if rule
  • References/C, C++/C++/Language

Allows any and all code transformations that do not change the observable behavior of the program. Explanation The

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

Increment/decrement operators increments or decrements the value of the object. Operator name

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
Template argument deduction
  • References/C, C++/C++/Language

In order to instantiate a function template

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

Conditionally executes another statement. Used where code needs to be executed based on a run-time condition.

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

A program shall contain a global function named main, which is the designated start of the program.

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

Executes a statement repeatedly, until the value of condition becomes false. The test takes place after each iteration

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

Returns the result of specific arithmetic operation. Operator name Syntax

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

Specifies that the type of the variable that is being declared will be automatically deduced from its initializer. For functions, specifies that the return type is a trailing

2025-01-10 15:47:30