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? I'm just curious what the standard says.

link|improve this question

80% accept rate
3  
Is this the same for Java? – Philippe Aug 1 '11 at 11:57
8  
@Philippe: no, in Java 0 is a decimal integer constant: see the definition of DecimalNumeral. – Joachim Sauer Aug 1 '11 at 13:28
19  
+1 for asking an entirely irrelevant question and getting tons of upvotes :-) – Kerrek SB Aug 1 '11 at 18:28
30  
I think the way to instant rep on SO is not a profound question, but a peculiar question whose answer would land you geek cred at the water cooler :) – Josh Aug 1 '11 at 18:39
feedback

4 Answers

up vote 167 down vote accepted

Yes, 0 is an Octal literal in C++.

As per the C++ Standard:

2.14.2 Integer literals [lex.icon]

integer-literal:  
    decimal-literal integer-suffixopt  
    octal-literal integer-suffixopt  
    hexadecimal-literal integer-suffixopt  
decimal-literal:  
    nonzero-digit  
    decimal-literal digit  
octal-literal:  
    0                           <--------------------<Here>
    octal-literal octal-digit
link|improve this answer
26  
The other important point being that a decimal-literal is a nonzero-digit followed by zero or more digit so there is no ambiguity. – Charles Bailey Aug 1 '11 at 7:53
2  
@MSalters: With your version, you have to additionaly specify the preference: If both octal-literal and decimal-literal are possible interpretations of the byte pattern, pick octal-literal. The official standard's wording doesn't have this problem. – Martin Sojka Aug 1 '11 at 8:46
14  
@MSalters: You still couldn't have decimal-literal as any number of digits, it would have to be a single zero or a non-zero digit followed by any digits otherwise every octal literal could be interpreted as a decimal literal. I can see the compile error, now: ERROR: 0 is ambiguous, could be octal zero or could be decimal zero. Consider using (1 - 1) to disambiguate. – Charles Bailey Aug 1 '11 at 9:25
1  
Now i'm curious about the rationale behind this decision. Say, in Java 0 is decimal, not octal. – Malcolm Aug 1 '11 at 11:07
3  
Are there any circumstances in which an octal literal zero would behave differently from a decimal literal zero? I know that a hex constant like 0x8000 will behave differently from 32768 on compilers where INT_MAX is 32767 (the former is unsigned int; the latter is signed long) but octal constants less than INT_MAX are signed, are they not? – supercat Aug 1 '11 at 15:21
show 7 more comments
feedback

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 :-)

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
3  
Integer literals starting with zero but without the 'x' after the zero. – luiscubal Aug 1 '11 at 16:32
2  
-1: this doesn't actually answer the question. – John Saunders Aug 1 '11 at 17:50
Question is: Is 0 an octal literal according to the C++ grammar? Extra Comment is: I'm just curious what the standard says. This answers the question. If you're going to get technical about the answer, then let's get technical about the question. – Xaade Aug 2 '11 at 14:57
An assertion "yes" without proof is not an answer, either. – Lightness Races in Orbit Aug 5 '11 at 1:01
@Xaade: The question is not about my existence. – Lightness Races in Orbit Aug 8 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.