Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After reading "Hidden Features and Dark Corners of C++/STL" on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both Visual Studio 2008 and G++ 4.4. The code:

#include <stdio.h>
int main()
{
     int x = 10;
     while( x --> 0 ) // x goes to 0
     {
       printf("%d ", x);
     }
}

I'd assume this is C, since it works in GCC as well. Where in the standard is this defined, and where did it come from?

share|improve this question
195  
Behold the confusion that two little parenthesis could have prevented :) +1 for being disciplined enough to say WTF and ask :) – Tim Post Oct 29 '09 at 7:08
54  
Or even just proper spacing... I don't think I've ever seen a space between the variable and either ++ or -- before... – Matthew Scharley Oct 29 '09 at 7:09
291  
This "goes to" operator can be reverted ( 0 <-- x ). And also there is a "runs to" operator ( 0 <---- x ). Geez, the funniest thing I've ever heard of c++ syntax =) +1 for the question. – SadSido Oct 29 '09 at 7:27
29  
And now it's on Reddit... This question is becoming quite the rep factory. – Brian Campbell Dec 30 '09 at 5:56
156  
Imagine the new syntax possibilities: #define upto ++<, #define downto -->. If you're feeling evil, you can do #define for while( and #define do ) { (and #define done ;}) and write for x downto 0 do printf("%d\n", x) done Oh, the humanity... – Chris Lutz Mar 4 '10 at 7:07
show 22 more comments

closed as not constructive by Robert Harvey Apr 29 at 18:03

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

17 Answers

up vote 1867 down vote accepted
+50

That's not an operator -->. That's two separate operators, -- and >.

Your condition code is decrementing x, while returning xs original (not decremented) value, and then comparing the original value with 0 using the > operator.

To better understand, the statement could be as follows:

while( (x--) > 0 )
share|improve this answer
19  
Then again, it does kind of look like some kind of range operator in that context. – Charles Salvia Oct 29 '09 at 7:14
9  
I agree, I should have seen it. Though these are all just excuses, it's probably the combination of me being tired and seeing it on comp.lang.c++ (automatic "trust" in words), not to mention the alarm of another poster. – GManNickG Oct 29 '09 at 7:15
9  
this answer is only partly right: the variable x is post decremented AFTER being compared to 0 – knittl Oct 29 '09 at 8:26
9  
Saying that x is post-decremented and then compared to 0 is the same as saying x is decremented after being compared to 0 – Charles Salvia Oct 29 '09 at 8:35
11  
@knittl: Your comment isn't any better. The return value of the subexpression "x--" is defined to be the old value. When the actual decrement is happening doesn't matter because you are not allowed to access x once more before the next sequence point. In case x is an object of a user-defined type, the postfix decrement will be a function call which is supposed to decrement the object and return a copy of the previous value. Since there are two sequence points (entering and leaving the function) involved, the decrement would come before the comparison in that case (user-defined types). – sellibitze Oct 29 '09 at 8:45
show 6 more comments

or for something completely different... x slides to 0

while (x --\
            \
             \
              \
               > 0) 
     printf("%d ", x);

not so mathematical, but... every picture paints a thousand...

share|improve this answer
7  
Sorry, I don't get this one. How does this work? – mafu Mar 7 '12 at 10:48
39  
@mafutrct - As I remember it \ in C just appends the next line as if there was not a line break. The \s here basically do nothing. – Hogan Mar 10 '12 at 4:37
87  
+1 for creativity. – Mihai Todor Aug 3 '12 at 12:13
15  
You crazy! I cannot help giggling~~ – billybob Dec 6 '12 at 14:36
12  
sliiiiiide to the right – Lightness Races in Orbit Jan 18 at 4:36
show 4 more comments

I think it's equivalent to:

while( x-- > 0 )
share|improve this answer

It's

#include <stdio.h>
int main(void)
{
     int x = 10;
     while( x-- > 0 ) // x goes to 0
     {
       printf("%d ", x);
     }
     return 0;
}

Just the space make the things look funny, -- decrements and > compare.

share|improve this answer

As a side note, the opposite of the --> operator

while (x --> 0)

i.e. the <-- operator

while (0 <-- x)

also works, though in a slightly different manner

share|improve this answer
96  
for some strange reasons the real opposite operator is "<=--" :P – quinmars Dec 29 '09 at 20:33
21  
quinmars, your "<=-- operator" is broken if x is unsigned. :-) – R.. Jun 27 '10 at 16:26
5  
its is different because --x is different of x--. – anacarolinats Feb 13 at 19:20
while( x-- > 0 )

is how that's parsed.

share|improve this answer

The usage of --> has historical relevance. Decrementing was (and still is in some cases), faster than incrementing on the x86 architecture. Using --> suggests that x is going to 0, and appeals to those with mathematical backgrounds.

share|improve this answer
149  
Not exactly true. Decrementing and Incrementing take the same amount of time, the benefit of this is that comparison to zero is very fast compared to comparison versus a variable. This is true for many architectures, not just x86. Anything with a JZ instruction (jump if zero). Poking around you can find many "for" loops that are written backwards to save cycles on the compare. This is particularly fast on x86 as the act of decrementing the variable set the zero flag appropriately, so you could then branch without having to explicitly compare the variable. – burito Dec 30 '09 at 5:16
19  
Compare CPU time that was saved with this technique and brain time wasted in this SO question. Which is bigger? – Tadeusz A. KadÅ‚ubowski Apr 6 '10 at 10:51
2  
Well, decrementing toward zero means you only have to compare against 0 per loop iteration, while iterating toward n means comparing with n each iteration. The former tends to be easier (and on some architectures, is automatically tested after every data register operation). – Joey Adams Apr 12 '10 at 15:07
29  
@Tadeusz A. KadÅ‚ubowski: the brain time is wasted only once, the CPU time each time the process runs. If you value your code, think about it ;) – Konerak Nov 28 '10 at 13:01
1  
@Konerak, Unless it's critical code, brain time often costs a lot more than all the wasted computer time put together – asperous.us Mar 6 at 4:08
show 1 more comment

This is exactly the same as

while (x--){
   printf("%d ", x);
}

for non-negative numbers

share|improve this answer
8  
Depends on the initial value of x – Artelius May 2 '10 at 4:46
2  
This is true... it requires x to be positive. Still cool though! +1 :) – DoctorT May 5 '10 at 15:21
3  
@DoctorT you mean "non-negative". – rightfold Jun 5 '11 at 21:38
18  
Shouldn't this be for(--x++;--x;++x--)? – muntoo Dec 4 '11 at 21:32
@DoctorT that's what unsigned is for – Cole Johnson Mar 23 at 18:39
show 1 more comment

In one book I read they said (I don't remember correctly what is book): Compiler try to parse expression to bigest token by using left right rule: In this case is:

x-->0

Parse to biggest token:

token 1: x
token 2: --
token 3: >
token 4: 0
conclude: x-- > 0

Same as:

a-----b

After parse

token 1: a
token 2: --
token 3: --
token 4: -
token 5: b
conclude: (a--)-- - b

I hope it helps to understand the complicated expression ^^

share|improve this answer
24  
Your second explanation is not correct. The compiler will see a-----b and think (a--)-- - b, which does not compile because a-- does not return an lvalue. – DoctorT May 5 '10 at 15:26
13  
Additionally, x and -- are two separate tokens. – Roland Illig Jul 2 '10 at 19:20

Anyway, we have a "goes to" operator now. "-->" is easy to be remembered as a direction, and "while x goes to zero" is meaning-straight.

Furthermore, it is a little more efficient than "for (x = 10; x > 0; x --)" on some platforms.

share|improve this answer
5  
Goes to cant be true always especially when value of x is negative. – Ganesh Gopalasubramanian Nov 13 '09 at 3:22
65  
It will get there eventually. – Josh Lee Dec 30 '09 at 2:25
4  
The other version does not do the same thing - with for (size_t x=10; x-->0; ) the body of the loop is executed with 9,8,..,0 whereas the other version has 10,9,..,1. It's quite tricky to exit a loop down to zero with an unsigned variable otherwise. – Pete Kirkham Jun 21 '10 at 8:57

This code first compare x and 0 then decrement x . [ also say in first answer : You're post decrementing x and then comparing x and 0 with the > operator ] see the output of this code :

9 8 7 6 5 4 3 2 1 0

we know first compare and then decrement by see 0 in output .

if we want to first decrement and then compare use this code :

#include <stdio.h>
int main(void)
{
     int x = 10;
     while( --x> 0 ) // x goes to 0
     {
       printf("%d ", x);
     }
     return 0;
}

that output is :

9 8 7 6 5 4 3 2 1
share|improve this answer

There is a space missing between -- and >. x is post decremented, that is, decremented after checking the condition x>0 ?.

share|improve this answer
8  
The space is not missing - C(++) ignores whitespace. – H2CO3 Aug 2 '12 at 19:16
@H2CO3 This isn't true in general. There are places where white space must be used to separate tokens, e.g. in #define foo() versus #define foo (). – Jens Apr 25 at 21:16

My compiler will print out 9876543210 when I run this code.

#include <iostream>
int main()
{
    int x = 10;
    while( x --> 0 ) // x goes to 0
    {
        std::cout << x;
    }
}

As expected. The while( x-- > 0 ) actually means while( x > 0). The x-- post decrements x.

while( x >= 0 ) {
    x--;
    std::cout << x;
}

could be written to do the same thing.

It is nice that it looks like while x goes to 0 though.

share|improve this answer
1  
What are you quoting? – nobar Feb 28 '10 at 5:00
1  
The result is only undefined when you're incrementing/decrementing the same variable more than once in the same statement. It doesn't apply to this situation. – DoctorT May 5 '10 at 15:30

-- is the decrement operator and > is the greater-than operator.

The two operators are applied as a single one like -->.

share|improve this answer

Actually x is post-decrementing and with that condition is being checked. its not -->, its (x--) > 0

Note: value of x is changed after condition is checked because it post-decrementing. Some similar cases can also occur e.g.

-->    x-->0
++>    x++>0
-->=   x-->=0
++>=   x++>=0
share|improve this answer

It is to prevent confusion (obfuscation, perceived cleverness etc) such as this, that static analysis checkers (eg) MISRA seeks to prevent assignment operations (including ++ and -- as well as the obvious =) in conditional statements.

share|improve this answer
2  
confusion? this clarifies things beyond anything I would've imagined possible in C++. – coder543 Feb 28 at 17:16

Its combination of two operators.First "--" is for decrementing the value and ">" for checking greater than value.

#include<stdio.h>
int main()
{
    int x = 10;
    while (x-- > 0)
        printf("%d ",x);
    return 0;
}

output will be:

9 8 7 6 5 4 3 2 1 0            
share|improve this answer

protected by Kobi Feb 10 '11 at 6:48

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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