Moderator Note:

Please think carefully before providing another answer to this question. If your answer duplicates an existing answer, it will very likely be removed.

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

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 sillies.

link|improve this question
91  
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
18  
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
178  
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
14  
And now it's on Reddit... This question is becoming quite the rep factory. – Brian Campbell Dec 30 '09 at 5:56
67  
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 29 more comments
feedback

22 Answers

up vote 1099 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 )
link|improve this answer
97  
Bah, I freakin feel tricked. In my defense Derek called it an operator and I abandoned all caution. :( – GManNickG Oct 29 '09 at 7:06
390  
Ha! I must give this to my students on the next exam! – Thomas Padron-McCarthy Oct 29 '09 at 7:08
44  
Not to offend or anything, but I was somewhat surprised that someone with 10.6K rep would ask this – Charles Salvia Oct 29 '09 at 7:10
88  
@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 '09 at 13:05
52  
If you're going to put it on an exam, make it a bonus question. – Kyralessa Nov 19 '09 at 18:08
show 18 more comments
feedback

That's a very complicated operator, so C++ Standard committee even placed its 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|improve this answer
13  
Ah, I see it now! :O! – GManNickG Oct 29 '09 at 8:42
4  
lol! thats really very comlpicated :D – Rakesh Juyal Nov 5 '09 at 18:06
216  
You, sir, win the subtle answer of the century award. – Randolpho Dec 30 '09 at 1:49
38  
Why is this answer not the one, that is accepted? :) Say no to boring answers! – shylent Dec 30 '09 at 7:21
3  
@[Usavich] They're two operators... so they're described in two places. – Zesty Jul 26 '11 at 10:25
show 7 more comments
feedback

I think it's equivalent to:

while( x-- > 0 )
link|improve this answer
63  
+1 Here comes your nice answer badge. – Amarghosh Nov 11 '09 at 14:55
6  
99... one more point to a pretty gold badge. – Myrddin Emrys Dec 30 '09 at 20:40
1  
ahh spaces! they are so clever! – Etienne Dupuis Mar 27 at 20:31
feedback

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

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

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

link|improve this answer
Sorry, I don't get this one. How does this work? – mafutrct Mar 7 at 10:48
4  
@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 at 4:37
+1: Easily the best answer :P – Leo May 10 at 12:00
feedback

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|improve this answer
feedback
while( x-- > 0 )

is how that's parsed.

link|improve this answer
feedback

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|improve this answer
60  
for some strange reasons the real opposite operator is "<=--" :P – quinmars Dec 29 '09 at 20:33
55  
Otherwise known as 'firework'. – Pete Kirkham Jun 21 '10 at 8:53
8  
quinmars, your "<=-- operator" is broken if x is unsigned. :-) – R.. Jun 27 '10 at 16:26
feedback

Equally confusing is the rises to operator:

while( x ++< 100 )

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

link|improve this answer
4  
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 '09 at 4:57
19  
"forever" is a strong word. Eventually it would wrap to negative/zero and end the loop. – James Dec 30 '09 at 5:56
18  
@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 '09 at 9:28
1  
@TokenMacGuy Only if it's signed. – jsimmons Sep 19 '11 at 1:42
11  
+1 for the beheaded fish operator. – corsiKa Dec 9 '11 at 21:47
feedback

Utterly geek, but I will be using this:

#define as ;while

int main(int argc, char* argv[])
{
    int n = atoi(argv[1]);
    do printf("n is %d\n", n) as ( n --> 0);
    return 0;
}
link|improve this answer
106  
Please, may I never have to maintain your code. – Donal Fellows May 18 '10 at 21:07
@DonalFellows 42 comment upvotes, congrats. :) – muntoo Oct 29 '11 at 21:40
@DonalFellows Amen! – Johan Bezem Nov 9 '11 at 22:24
7  
@DonalFellows Fixed it. The code is now properly indented. – muntoo Dec 3 '11 at 2:33
2  
@muntoo: +1 Much better. – Donal Fellows Dec 4 '11 at 20:51
feedback

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|improve this answer
85  
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
@burito: thx for the clarification – Matt Joiner Dec 30 '09 at 15:19
7  
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
1  
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
7  
@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
show 2 more comments
feedback

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|improve this answer
115  
++< is the equally-rare, "launch missile," operator. – Andres Jaan Tack Nov 13 '09 at 0:18
27  
That, to me, looks like a pope hat. – James Dec 30 '09 at 5:55
6  
I love how @Andres' comment has over 6 times as many upvotes as the answer it comments on. – Chris Lutz Mar 4 '10 at 7:01
the emoticon should be called 'go see a doctor' – Hardryv Dec 6 '11 at 22:36
2  
"Launch missile operator"? Maybe "skyrockets to" operator? :) – Calmarius Dec 25 '11 at 10:28
show 1 more comment
feedback

This is exactly the same as

while (x--)

for non-negative numbers

link|improve this answer
5  
Depends on the initial value of x – Artelius May 2 '10 at 4:46
1  
This is true... it requires x to be positive. Still cool though! +1 :) – DoctorT May 5 '10 at 15:21
2  
@DoctorT you mean "non-negative". – WTP'-- Jun 5 '11 at 21:38
5  
Shouldn't this be for(--x++;--x;++x--)? – muntoo Dec 4 '11 at 21:32
feedback

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|improve this answer
4  
Goes to cant be true always especially when value of x is negative. – Ganesh Gopalasubramanian Nov 13 '09 at 3:22
27  
It will get there eventually. – Josh Lee Dec 30 '09 at 2:25
2  
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
feedback

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|improve this answer
feedback

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 1: >
token 2: 0
conclude: x-- > 0

Same as:

a-----b

After parse

token 1: a--
token 2: -
token 3: --b
conclude: a-- - --b

I hope it helps to understand the complicated expression ^^

link|improve this answer
11  
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
11  
Additionally, x and -- are two separate tokens. – Roland Illig Jul 2 '10 at 19:20
feedback

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|improve this answer
feedback
for(x = 20; x --> 0;) { print x; }
link|improve this answer
feedback

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

link|improve this answer
8  
You've bumped a very old and answered question :/ – GManNickG Dec 28 '09 at 18:05
feedback

To both reduce the learning curve, and promote adoption of Java for C++ devs, the language includes this operator also:

import java.lang.*;

public class GoesToOperator {
    public static void main(String[] args) {
        StringBuilder sb = new StringBuilder();
        int x = 100;

        while (x --> 0) {
            sb.append(x);
            sb.append(" ");
        }

        System.out.println(sb);
    }
}
link|improve this answer
1  
I giggled at import java.lang.*; – corsiKa May 17 at 13:46
feedback

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.

link|improve this answer
1  
What are you quoting? – nobar Feb 28 '10 at 5:00
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
sorry, fixed the problem. I was getting confused. – cool_me5000 Jun 16 '11 at 21:09
feedback

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

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

link|improve this answer
feedback

I have called this the "approaches" operator since the first time I pondered what on earth is happening here :).

link|improve this answer
1  
lim of x as x->10 is 10. – muntoo Oct 29 '11 at 21:43
feedback

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.