Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)

Which has the higher precedence, postfix operators or prefix operators? For example, when running this:

int x = 3, z;
z = x++ + ++x;

I was expecting x to be 5 and z to be 7, but the values were actually x=5 and z=8. How is the above expression evaluated?

link|improve this question

56% accept rate
Which language? – larsmans Jan 10 at 18:14
Language, please? – Scott Hunter Jan 10 at 18:14
You should probably read this question as well: stackoverflow.com/questions/949433/… – Michael Mrozek Jan 10 at 18:18
sorry its in c language.. – haris Jan 10 at 18:24
3  
@haris both in c and c++ this is undefined behavior. Answers stating otherwise are just misleading. – Luchian Grigore Jan 10 at 18:26
show 5 more comments
feedback

closed as exact duplicate by Pascal Cuoq, James McNellis, Kevin, Daniel Fischer, Jens Gustedt Jan 10 at 21:18

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.

3 Answers

It depends on the language.

In C++ for example, this is undefined behavior as you're modifying x twice between sequence points.

Can't really tell about other languages, but all should have an operator precedence table which can easily be found.

link|improve this answer
then what should be the value in this int i = 0; i = i++ + ++i; – haris Jan 10 at 18:34
1  
10. Or 9,495,205,111. Or your hard drive gets formatted. – James McNellis Jan 10 at 18:39
@haris it is undefined. You shouldn't write code like that. It can be 7,8,0, it can crash, or it can kill all bunnies on the planet. Why would you want to kill bunnies? You can try to explain the result you're getting, but it doesn't make a rule. There's no guarantee you'll get the same result even on the same platform and on the same compiler. – Luchian Grigore Jan 10 at 18:39
@Luchian Grigore : iam getting i=3 but i was expecting i to be 2 becuase (0+2=2) m i right? – haris Jan 10 at 18:43
@haris. you are not right. undefined behavior means you can expect anything. – Luchian Grigore Jan 10 at 18:46
show 5 more comments
feedback

A sequence point is a used in imperative languages to define when side-effects can occur as expressions are evaluated. In C99 standard, sequence points are defined as:

  1. The end of an expression
  2. ||, &&, ?:, and comma operators
  3. at a function call (after all arguments have been evaluated and before the actual call)

The standard also explicitly states that (Sec 6.5 #2):

Between the previous and next sequence point an 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 footnote on the page notes that the following expressions are rendered undefined by this rule:

a[i] = i++
i = ++i + 1

This means that we cannot change the value of i more than once in the example expression you've given because the only sequence points are before the line and at the end of the line. Consequently, the line of code you've given is undefined.

link|improve this answer
thanx this was intresting answer – haris Jan 10 at 18:46
+1 quite different than your first answer. good job! – Luchian Grigore Jan 10 at 18:47
@LuchianGrigore Thanks – Dave Jan 10 at 18:48
feedback

Precedence in C++: http://en.cppreference.com/w/cpp/language/operator_precedence

So the increments both get done before the simple +. And it looks like, from your values, that the ++'s get done in left-to-right order (though I don't know that is reliable across implementations).

Thus:

  1. x++ has the value 3, and changes x to 4
  2. ++x changes x to 5, and has the value 5
  3. 3+5 gets assigned to z
link|improve this answer
1  
It's actually undefined behavior in C++. – Luchian Grigore Jan 10 at 18:19
feedback

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