C++ - Octal literal

Constants of octal numeral system are also known as octal literals. might contain digits from 0 up to 7.

octal literal

Description

 0123

Output

Compatible programing languages:
Visual C++ .NET

Examples

C++

Octal literal the possible of use:
x = 012;         // x = 10
y = 4 * 077;     // y = 374
if (x>10)
  y = (float)x / 0xa;   // y = 1

C++

Other pieces of example codes:
0123
0111

You can find it in the following collections: constants
Languages: en hu cz sk