vote up 330 vote down star
123

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?

Edit

Because people keep taking this the wrong way, yes, I knew the answer and merely thought it would be a fun question. :P Kirill was the first to call me out, after I left a few "egging on" comments.

You silly's.

flag
34  
Behold the confusion that two little parenthesis could have prevented :) +1 for being disciplined enough to say WTF and ask :) – Tim Post Oct 29 at 7:08
2  
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 at 7:09
53  
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
3  
Funny, I was just joking about this operator earlier. stackoverflow.com/questions/1641054/… – jleedev Oct 29 at 10:33
7  
And now it's on Reddit... This question is becoming quite the rep factory. – Brian Campbell Dec 30 at 5:56
show 15 more comments

18 Answers

vote up 333 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
34  
Bah, I freakin feel tricked. In my defense Derek called it an operator and I abandoned all caution. :( – GMan Oct 29 at 7:06
133  
Ha! I must give this to my students on the next exam! – Thomas Padron-McCarthy Oct 29 at 7:08
19  
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
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
6  
@Thomas Padron-McCarthy: Seriously, giving such a question on an exam should never be done. What you do is tell your students that theese kind of obfuscating of the code is only going to make your students confused, and some of them might actually write this kind of code in real life. I'm really irritated at my professors for writing ugly, obfuscated code, and testing us with code which deserves death penalty. – martiert Nov 18 at 13:05
show 11 more comments
vote up 198 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
6  
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
1  
This comment made me smile at the end of a day's work! – Oxymoron Nov 13 at 15:27
27  
You, sir, win the subtle answer of the century award. – Randolpho Dec 30 at 1:49
9  
Why is this answer not the one, that is accepted? :) Say no to boring answers! – shylent Dec 30 at 7:21
show 4 more comments
vote up 121 vote down

I think it's equivalent to:

while( x-- > 0 )
link|flag
17  
+1 Here comes your nice answer badge. – Amarghosh Nov 11 at 14:55
2  
99... one more point to a pretty gold badge. – Myrddin Emrys Dec 30 at 20:40
vote up 29 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 23 vote down
while( x-- > 0 )

is how that's parsed.

link|flag
vote up 12 vote down

Equally confusing is the rises to operator:

while( x ++< 100 )

(Edit: Fixed error caused by Murphy's law.)

link|flag
2  
That is backwards. Either the loop will immediately exit because x is below 100 or the loop will continue forever with a value of x about 100. It should be x ++< 100. – Dean Putney Dec 30 at 4:57
2  
"forever" is a strong word. Eventually it would wrap to negative/zero and end the loop. – James Dec 30 at 5:56
1  
@James: Not necessarily. In C++, the compiler is permitted (but not required) To assume that overflow can not occur, and thus may optimize the clause to for(;;x++) in order to skip the comparison – TokenMacGuy Dec 30 at 9:28
vote up 9 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
55  
++< is the equally-rare, "launch missile," operator. – Andres Jaan Tack Nov 13 at 0:18
8  
That, to me, looks like a pope hat. – James Dec 30 at 5:55
vote up 9 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
12  
for some strange reasons the real opposite operator is "<=--" :P – quinmars Dec 29 at 20:33
vote up 9 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
12  
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 at 5:16
@burito: thx for the clarification – Matt Joiner Dec 30 at 15:19
vote up 6 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
4  
Goes to cant be true always especially when value of x is negative. – Ganesh Gopalasubramanian Nov 13 at 3:22
8  
It will get there eventually. – jleedev Dec 30 at 2:25
vote up 5 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
Is there an answer really? y seems negative but no number fits. – ns Dec 30 at 4:33
y=2 and z=1. On the 4th iteration y is -1 which just returns a 0 when right shifting so it doesn't loop any further. – Android Jan 13 at 9:51
vote up 4 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 3 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
vote up 3 vote down

there is a space missing between -- and > .. x is post decremented ie decremented after checking the condition X>0 ?

link|flag
4  
You've bumped a very old and answered question :/ – GMan Dec 28 at 18:05
...and still got 6 damn points for it X( – sztomi Dec 30 at 9:53
vote up 3 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 2 vote down

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;
    }
}

"The result is undefined when a variable is referenced within an expression that increments or decrements it"

link|flag
vote up 1 vote down

This is exactly the same as

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

cool_me5000: "The result is undefined when a variable is referenced within an expression that increments or decrements it" There is nothing wrong with the code above, well, except that it looks funny. If what your are saying was true, they'd be no need in having both i++ and ++i in the language. You are probably thinking about the case such as a[i++] = i++ which really is problematic.

link|flag

Your Answer

Get an OpenID
or
never shown

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