Integer literals starting with a zero are octal rather than decimal values. While using octal values is fully supported, most developers do not have experience with them. They may not recognize octal values as such, mistaking them instead for decimal values.
Hexadecimal literals (``++0xdeadbeef++``) and binary literals (``++0b0101'0110'00011++``, available since {cpp}14), on the other hand, have a clear marker (``++0x++`` or ``++0b++``) and can be used to define the binary representation of a value.
== Noncompliant Code Example
----
int myNumber = 010; // Noncompliant. myNumber will hold 8, not 10 - was this really expected?
----
== Compliant Solution
----
int myNumber = 8; // Use decimal when representing the value 8
// or
int myNumber = 0b1000; // Use binary or hexadecimal for a bit mask
----
== Exceptions
Octal values have traditionally been used for user permissions in Posix file systems, and this rule will ignore octal literals used in this context.