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

I Cant really undersdand suffix. I know it first uses identifier and then increases or decreses , as first shows i and then ++. But now i think im wrong and still don't understand it.

#include <iostream>

using namespace std;

int main()
{
    int i = 0;
    cout << i << i++ << i;
    cout << "\n\n\nPress Enter to close the window . . . ";
    cin.clear();
    cin.sync();
    cin.get();
    return 0;
}

Output:

101


Press Enter to close the window . . . 

first i is changed before increment readed.Why?

I expected

001

Press Enter to close the window . . .

Can someone explain.

share|improve this question
possible duplicate of What is the correct answer for cout << c++ << c;? – Alok Save Jun 1 '12 at 13:59
thanks going to look on that – Arviller Ridios Jun 1 '12 at 14:07
Did you actually read any of the answers in the marked duplicate before accepting the answer? Because the answer you accepted is clearly incorrect. – Alok Save Jun 1 '12 at 14:27
possible duplicate of Undefined Behavior and Sequence Points – sbi Jun 1 '12 at 18:23

2 Answers

Just never do such a thing, it is undefined

 cout << i << i++ << i;

better do

 cout << i << i << (i + 1);
 i ++;

if you want your expected result.


The case

  cout << i++;

is defined and perfectly ok.

share|improve this answer
unfortunately, this does not explain why and what is undefined. – Walter Jun 1 '12 at 14:15

I think what is undefined*) here is the order of evaluation of function arguments. What you are actually calling here are function calls to the (overloaded)

std::ostream& operator<< (std::ostream&, int);

and the first argument is the output of another call to the same function, so your

cout << i << i++ << i;

expands to

operator<<( operator<<( operator<<(cout,i), i++), i);

As the order in which function arguments are evaluated is not specified, anything can happen here. You can avoid that by writing separate lines:

cout << i;
cout << i++;
cout << i;

which expands into the harmless

operator<<(cout,i);
operator<<(cout,i++);
operator<<(cout,i);

*) edit: to be more precise, the cout<<i<<i++; is undefined because the order of evaluation of function arguments in unspecified.

share|improve this answer
1  
-1 Order of evaluation of arguments to a function is not Undefined, it is Unspecified. Unspecified & Undefined are not the same.Also, your description does not explain correctly why this is Undefined Behavior. Check the answers in the marked duplicate to know exactly this is Undefined Behavior. – Alok Save Jun 1 '12 at 14:20
@Als why do you criticise me instead of edit and correct? I thought this site is for mutual help not a race for being more clever than others. btw, I obviously didn't follow the duplication link. – Walter Jun 1 '12 at 14:27
1  
Are you expecting me to edit and correct your incorrect answer when i already answered this in very much detail here Since you don't understand you should ask and resolve your doubts not post incorrect answers.Downvoting is a means to indicate incorrectness or displeasure towards an answer.I downvoted your answer because it is incorrect.Lastly, If you can't take criticism don't post. FYI your answer is still Incorrect. – Alok Save Jun 1 '12 at 14:36
@Als why do you think I cannot take criticism? – Walter Jun 1 '12 at 15:15

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.