vote up 151 vote down star
61

After reading this post on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 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);
     }

}

Where in the standard is this defined, and where did it come from?

I'd assume C, since it works in GCC as well, but I put C++ on there just in case C++ has more to mention on it. On a more subjective note, I've never heard of this before, had anybody else? Is it worth using?

flag

15  
Behold the confusion that two little parenthesis could have prevented :) +1 for being disciplined enough to say WTF and ask :) – tinkertim Oct 29 at 7:08
5  
For shame, GMan. – GMan Oct 29 at 7:09
29  
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 at 7:27
4  
Nice joke, GMan :) – Kirill V. Lyadvinsky Oct 29 at 8:19
6  
This question should be CW. – zilgo Nov 13 at 9:09
show 12 more comments

15 Answers

vote up 160 vote down check

That's not an operator -->. That's two separate operators, -- and > You're post decrementing x and then comparing x and 0 with the > operator

link|flag
12  
Bah, I freakin feel tricked. In my defense Derek called it an operator and I abandoned all caution. :( – GMan Oct 29 at 7:06
52  
Ha! I must give this to my students on the next exam! – Thomas Padron-McCarthy Oct 29 at 7:08
8  
Not to offend or anything, but I was somewhat surprised that someone with 10.6K rep would ask this – Charles Salvia Oct 29 at 7:10
3  
Then again, it does kind of look like some kind of range operator in that context. – Charles Salvia Oct 29 at 7:14
5  
@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 at 8:45
show 8 more comments
vote up 55 vote down

I think it's equivalent to:

while( x-- > 0 )
link|flag
1  
+1 Here comes your nice answer badge. – Amarghosh Nov 11 at 14:55
vote up 12 vote down

It's

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

}

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

link|flag
vote up 11 vote down
while( x-- > 0 )

is how that's parsed.

link|flag
vote up 79 vote down

That's a very complicated operator, so C++ Standard committee even placed it description in two different parts of Standard. You could read about it in 5.2.6/2 and 5.9 in C++03 Standard.

link|flag
5  
Ah, I see it now! :O! – GMan Oct 29 at 8:42
3  
lol! thats really very comlpicated :D – Rakesh Juyal Nov 5 at 18:06
Flagged. This is not a valid answer. – Seth Illgard Nov 13 at 6:50
6  
@Seth Illgard, This answer is completely correct, except that the --> is not actually a single operator :) – Kirill V. Lyadvinsky Nov 13 at 9:01
This comment made me smile at the end of a day's work! – Oxymoron Nov 13 at 15:27
show 3 more comments
vote up 2 vote down

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.

link|flag
1  
Goes to cant be true always especially when value of x is negative. – Ganesh Gopalasubramanian Nov 13 at 3:22
vote up 4 vote down

That is great, you could also do x++<10 which would grow till it hit 10, but isn't nearly as sneaky.

I am not sure what we could call ++< It looks like it should be some emotion icon.

link|flag
19  
++< is the equally-rare, "launch missile," operator. – Andres Jaan Tack Nov 13 at 0:18
vote up 0 vote down

Equally confusing is the rises to operator:

while( x ++> 100 )
link|flag
vote up 0 vote down

Also:

(x-->0) (x--<0) (--x>0) (--x<0) (x++>0) (x++<0) (++x>0) (++x<0)

Also, mix these expressions with the = operator, like this: (x--=>). This is really nice.

link|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down
   #include <stdio.h>

   int main() {
         int x = 10;
         int y = ???;
         int z = ???;
         while( x -->> y -->> z )
         {
           printf("%d ", x);
         } 
    }

outputs:

9 8 7

What is the value of y and z?

link|flag
vote up 0 vote down

Such syntax trick was used early in C and widely used in present time. Look here, for instance (sqlite3 in the list).

link|flag
vote up 0 vote down

I believe while( x --> 0 ) is same with while( x -- ) so > 0 is ignorable ? :D

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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()
{
     int x = 10;
     while( --x> 0 ) // x goes to 0
     {
       printf("%d ", x);
     }

}

that output is :

9 8 7 6 5 4 3 2 1
link|flag

Your Answer

Get an OpenID
or

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