Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I came across this question in this forum

#include <iostream>

using namespace std;

int main(int argc, char** argv) {

    int x=0;
    while (x<3) {
        x = x++;
        cout << x << endl;
    }

    return 0;
}

given the code above, why is the while loop infinite? Using gcc 4.4 under mac os, the while loop does terminate :) so the question does not apply for all architectures. The output I get tough is
1
2
3

I don't see 0, and I guess the reason is related to the double assignment?

share|improve this question
6  
Undefined Behavior is Undefined – Erik Mar 16 '11 at 21:36
on which platform it's infinite? or should I say compiler. – Piotr Salaciak Mar 16 '11 at 21:42
1  
@Piotr: The one he mentions in the question. – Erik Mar 16 '11 at 21:45
under mac osx x64 (gcc 4.4) the loop does terminate. Apparently, using some other compilers and/or platform it may be infinite programmers.stackexchange.com/questions/25836/… – Bob Mar 16 '11 at 22:46

2 Answers

x = x++;

is undefined behavior

share|improve this answer
Which means that the loop is neither infinite nor finite? – John Mar 16 '11 at 21:42
2  
@John: this means we cannot say why the program behaves this or that way – BlackBear Mar 16 '11 at 21:43
2  
@John: Which means that the program is invalid, and anyting can happen. – Bo Persson Mar 16 '11 at 21:44
Thanks for the clarification guys. – John Mar 16 '11 at 21:48
3  
@voodoomsr: Nope: stackoverflow.com/questions/98340/… – John Mar 16 '11 at 21:57
show 8 more comments

you never see zero because the increment is before the cout.

share|improve this answer
Not necessarily. – Anomie Mar 16 '11 at 21:50
@Anomie explain why – Ps1CsCpp Mar 16 '11 at 21:55
1  
It is undefined behavior because the value of x is set twice between sequence points. The compiler is free to do the assignment and increment in any order, or really to do anything else that might make sense to it. – Anomie Mar 16 '11 at 21:58
i think different but im going to read further in the c++ manual that i have. Long time ago i learn that the POSTIncrement like this x=a++; means x=a; a=a+1; i dont get whay in this situation where a=x is differen – Ps1CsCpp Mar 16 '11 at 22:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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