Zero is always zero, so it doesn't matter. But in a recent discussion with my friend he said that octal literals are almost unused today. Then it dawned upon me that actually almost all integer literals in my code are octal, namely 0. Is 0 an octal literal according to the C++ grammar? What does the standard say?
|
|
||||
|
Yes, As per the C++ Standard: 2.14.2 Integer literals [lex.icon]
|
|||||||||||||||||||||
|
|
Any integer value starting with '0' is an octal value. I.e.: 01 is octal 1, 010 is octal 10, which is decimal 8, and 0 is octal 0 (which is decimal, and any other, 0). So yes, it's an octal. That's plain English translation of the grammar snippet in @Als's answer :-) |
|||||||||||||
|
|
Terrific question :) I looked it up in the Java Language Spec, and in Java it is decimal. The spec even contains the following quote:
|
|||
|
|
|
Any integer which starts from '0' consider as octal value. for example the decimal value of 011 is 9. The decimal value of 0101 is 65. this is the way we have to calculate it. |
|||
|
|
|
Apparently all integer literals starting with zero are in fact octal. This means that it includes 0 as well. This makes little difference since zero is zero. But not knowing this fact can hurt you. I realized this when I was trying to write a program to convert binary numbers to decimal and hexidecimal output. Everytime that I was giving a number starting with zero I was getting the wrong output (For example, 012 = 10, not 12). It's good to know this information so you don't make the same mistake. |
|||||||||||||||||
|

DecimalNumeral. – Joachim Sauer Aug 1 '11 at 13:28