Possible Duplicates:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
How do we explain the result of the expression (++x)+(++x)+(++x)?

Why does the following program print 10? Isn't it supposed to print 12?

int j=2;
j = j++ * ++j;
printf("%d", j);
link|improve this question

79% accept rate
Similar: stackoverflow.com/questions/1606407/… – detly Jul 8 '10 at 7:49
3  
Possible duplicate: stackoverflow.com/questions/949433/… – detly Jul 8 '10 at 7:51
within an expression, there is no guarantee of order of evaluation between subexpressions. – C-x C-t Jul 8 '10 at 7:55
7  
Does this same question get asked every week? – R.. Jul 8 '10 at 7:59
@Gollum: Yes, but the expression in itself invokes UB. See my answer below. – Prasoon Saurav Jul 8 '10 at 8:02
show 3 more comments
feedback

closed as exact duplicate by caf, Paul R, Charles Bailey, Pete Kirkham, Prasoon Saurav Jul 8 '10 at 8:24

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 9 down vote accepted

int j=2; j= j++ * ++j; printf("%d", j);

j=j++*++j invokes Undefined Behavior as you are trying to change the value of j more than once between two sequence points.

Precedence only affects which tokens are considered to be the operands of each operator, but it does not affect in any way the order of evaluation.

link|improve this answer
In C++0x the term "sequence point" is being replaced by the term "an operation A being sequenced before an operation B, or being un-sequenced"(see blogs.msdn.com/b/vcblog/archive/2007/06/04/…, Sequence Points Revised) – Patrick Jul 8 '10 at 7:54
Well that just rolls off the tongue, doesn't it :P – detly Jul 8 '10 at 7:58
@Patric although the question mentions it's using a C++ compiler, it's tagged C, so changes to the wording of C++ standards might not be entirely relevant. – Pete Kirkham Jul 8 '10 at 8:27
@Downvoter: Please explain why you downvoted. – Prasoon Saurav Jul 9 '10 at 14:12
feedback

The expression

j = j++ * ++j

...is undefined. There is no way to know what the order of these operations are. It could result in anything, or make your CPU burst into flames. It will differ from compiler to compiler, and even within a particular compiler depending on optimisation levels or versions.

link|improve this answer
feedback

The operator precedence should be post-increment then pre-increment then multiply although I bet this comes down to one of those compiler-dependent / undefined things.

This precedence is based on the table at Wikipedia which is pretty common across the web which states that post-increment has precedence 2, pre-increment has precedence 3, and multiply has precedence 5.

My intuitive look is:

j = j++ * ++j (j is 2)
j = 2 * ++j (j is now 3)
j = 2 * 4 (j is now 4)
j = 8

Which is obviously wrong.

The correct answer is obviously that this is undefined.

link|improve this answer
feedback

I can guess that passed through the following way of computation:

  • pre-increment j by one
  • multiply j by itself
  • post-increment j by one

The exact order of these computations is undefined by the standard and may be compiler-specific.

link|improve this answer
2  
The order of evaluation of arguments associated to * and = operators is Unspecified. Don't confuse among the terms Undefined, Implementation Defined and Unspecified. – Prasoon Saurav Jul 8 '10 at 7:59
Definitions of implementation-defined, undefined, and unspecified at stackoverflow.com/questions/2046952/…. – Roger Pate Jul 9 '10 at 22:59
feedback

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