Function declarations
  • References/C, C++/C/C language

A function declaration introduces an identifier that designates a function

2025-01-10 15:47:30
Implicit conversions
  • References/C, C++/C/C language

When an expression is used in the context where a value of a different type is expected, conversion may occur:

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

Increment/decrement operators are unary operators that increment/decrement the value of a variable by 1. They can have postfix form:

2025-01-10 15:47:30
restrict type qualifier
  • References/C, C++/C/C language

Each individual type in the C type system has several qualified versions of

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

Executes code according to the value of an integral argument. Used where one or several out of many branches of code need to be executed according

2025-01-10 15:47:30
integer constant
  • References/C, C++/C/C language

Allows values of integer type to be used in expressions directly. Syntax An integer constant is a

2025-01-10 15:47:30
Preprocessor
  • References/C, C++/C/C language

The preprocessor is executed at translation phase 4

2025-01-10 15:47:30
cast operator
  • References/C, C++/C/C language

Performs explicit type conversion. Syntax

2025-01-10 15:47:30
break statement
  • References/C, C++/C/C language

Causes the enclosing for,

2025-01-10 15:47:30
ASCII Chart
  • References/C, C++/C/C language

The following chart contains all 128 ASCII decimal (dec), octal (oct), hexadecimal (hex) and character (ch) codes.

2025-01-10 15:47:30