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

Recently in an interview there was a following objective type question.

int c = 0;
cout << c++ << c;

Answers:

a. 10
b. 01
c. undefined behavior

I answered choice b, i.e. output would be "01".

But to my surprise later I was told by an interviewer that the correct answer is option c: undefined.

Now, I do know the concept of sequence points in C++. The behavior is undefined for the following statement:

int i = 0;
i += i++ + i++;

but as per my understanding for the statement cout << c++ << c , the ostream.operator<<() would be called twice, first with ostream.operator<<(c++) and later ostream.operator<<(c).

I also checked the result on VS2010 compiler and its output is also '01'.

share|improve this question
22  
Did you ask for an explanation? I often interview potential candidates and am quite interested in receiving questions, it shows interest. – Brady May 28 '12 at 10:14
Exactly, did you get an answer out from the interviewer? He is absolutely wrong. The output is always 01. – Ashwin kumar May 28 '12 at 10:20
2  
@jrok It's undefined behavior. Anything the implementation does (including sending an insulting email in your name to your boss) is conformant. – James Kanze May 28 '12 at 11:12
2  
This question is crying out for a C++11 (the current version of C++) answer that doesn't mention sequence points. Unfortunately I'm not knowledgeable enough about the replacement for sequence points in C++11. – Charles Bailey May 28 '12 at 11:34
3  
If it wasn't undefined it definitely couldn't be 10, it would be either 01 or 00. (c++ will always evaluate to the value c had before being incremented). And even if it wasn't undefined it would still be horribly confusing. – leftaroundabout May 28 '12 at 11:38
show 6 more comments

5 Answers

up vote 105 down vote accepted

You can think of:

cout<<c++<<c;

As:

std::operator<<(std::operator<<(std::cout, c++), c);

C++ guarantees that all side effects of previous evaluations will have been performed at sequence points. There are no sequence points in between function arguments evaluation which means that argument c can be evaluated before argument std::operator<<(std::cout, c++) or after. So the result of the above is undefined.

share|improve this answer
Found another interesting answer: stackoverflow.com/q/367633/815812 – Ashwin kumar May 28 '12 at 10:31
@Maxim: Thanks for the expalanation. With the calls you expained it would be undefined behaviour. But now, I have one more question (may be siller one, and I missing something basic and thinking loud) How did you deduce that the global version of std::operator<<() would be called instead of ostream::operator<<() member version. On debugging I am landing in a member version of ostream::operator<<() call rather than global version and that's the reason that initially I thought that answer would be 01 – pravs May 28 '12 at 11:26
2  
@pravs: whether operator<< is a member function or a free-standing function doesn't affect sequence points. – Maxim Yegorushkin May 28 '12 at 11:39
7  
The 'sequence point' is no longer used in the C++ standard. It was imprecise and has been replaced with the 'sequenced before/sequenced after' relation. – Rafał Dowgird May 28 '12 at 14:01
3  
+1. Enjoy your 1st gold badge :) – Umer Hayat Jun 20 '12 at 7:50
show 2 more comments

Technically, overall this is Undefined Behavior.

But, there are two important aspects to the answer.

The code statement:

std::cout<<c++<<c;

is evaluated as:

std::operator<<(std::operator<<(std::cout, c++), c);

The standard does not define the order of evaluation of arguments to an function.
So Either:

  • std::operator<<(std::cout, c++) is evaluated first or
  • cis evaluated first or
  • it might be any implementation defined order.

This order is Unspecified[Ref 1] as per the standard.

[Ref 1]C++03 5.2.2 Function call
Para 8

The order of evaluation of arguments is unspecified. All side effects of argument expression evaluations take effect before the function is entered. The order of evaluation of the postfix expression and the argument expression list is unspecified.

Further, there is no sequence point between evaluation of arguments to a function but a sequence point exists only after evaluation of all arguments[Ref 2].

[Ref 2]C++03 1.9 Program execution [intro.execution]:
Para 17:

When calling a function (whether or not the function is inline), there is a sequence point after the evaluation of all function arguments (if any) which takes place before execution of any expressions or statements in the function body.

Note that, here the value of c is being accessed more than once without an intervening sequence point, regarding this the standard says:

[Ref 3]C++03 5 Expressions [expr]:
Para 4:

....
Between the previous and next sequence point a scalar object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be accessed only to determine the value to be stored. The requirements of this paragraph shall be met for each allowable ordering of the subexpressions of a full expression; otherwise the behavior is undefined.

The code modifies c more than once without intervening sequence point and it is not being accessed to determine the value of the stored object. This is clear violation of the above clause and hence the result as mandated by the standard is Undefined Behavior[Ref 3].

share|improve this answer
So no nasal demons, right? – jrok May 28 '12 at 10:33
I mean, c is only modified once, so program can legally print 01 or 10, but not do something weird. Is my understanding correct? – jrok May 28 '12 at 10:40
1  
@Als Yes. I hadn't seen your edits (although I was reacting to jrok's statement that the program cannot do something weird---it can). Your edited version is good as far as it goes, but in my mind, the key word is partial ordering; sequence points only introduce a partial ordering. – James Kanze May 28 '12 at 11:30
1  
@Als thanks for an elaborative description, really very helpful !! – pravs May 28 '12 at 11:56
2  
The new C++0x standard says essentially the same but in different sections and in different wording :) Quote: (1.9 Program Execution [intro.execution], par 15): "If a side effect on a scalar object is unsequenced relative to either another side effect on the same scalar object or a value computation using the value of the same scalar object, the behavior is undefined." – Rafał Dowgird May 28 '12 at 14:41
show 3 more comments

Sequence points only define a partial ordering. In your case, you have (once overload resolution is done):

std::cout.operator<<( c ++ ).operator<<( c );

There is a sequence point between the c ++ and the first call to std::ostream::operator<<, and there is a sequence point between the second c and the second call to std::ostream::operator<<, but there is no sequence point between c ++ and c; the only ordering constraints are that c ++ be fully evaluated (including side effects) before the first call to operator<<, and that the second c be fully evaluated before the second call to operator<<. (There are also causual ordering constraints: the second call to operator<< cannot preced the first, since it requires the results of the first as an argument.) §5/4 (C++03) states:

Except where noted, the order of evaluation of operands of individual operators and subexpressions of individual expressions, and the order in which side effects take place, is unspecified. Between the previous and next sequence point a scalar object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be accessed only to determine the value to be stored. The requirements of this paragraph shall be met for each allowable ordering of the subexpressions of a full expression; otherwise the behavior is undefined.

One of the allowable orderings of your expression is c ++, c, first call to operator<<, second call to operator<<; this modifies the stored value of c (c ++), and accesses it other than to determine the new value (the second c), the behavior is undefined.

share|improve this answer

The correct answer is to question the question. The statement is unacceptable because a reader cannot see a clear answer. Another way to look at it is that we have introduced side-effects (c++) that make the statement much harder to interpret. Concise code is great, providing it's meaning is clear.

share|improve this answer

C++ standard don't defined that, so implementations of C++ can have their own implementations. So the result is undefined.

Though standard has already defineed some issues, some implementations also violate that.

share|improve this answer

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.