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

Only a one line of code in Turbo C that produces somewhat a strange result. It is actually an embedded segment of code in my one of applications. The code is given below that requires only one glance to go through it.

#include<stdio.h>
#include<conio.h>

void main(void)
{
    int temp=1;
    clrscr();
    printf("\n\n");
    printf(" %d %d %d", temp, ++temp, temp++);
    getch();
}

The output appears to be present (expected).

1 2 2

The actual output however is somewhat strange.

3 3 1

What should actually be the reason?

link|improve this question

3  
Not again...... – Seth Carnegie Nov 2 '11 at 21:16
We need ub.stackexchange.com – David Heffernan Nov 2 '11 at 21:18
feedback

closed as exact duplicate by Keith Thompson, David Heffernan, Let_Me_Be, Tim Post Nov 6 '11 at 11:05

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.

2 Answers

up vote 2 down vote accepted

The exact results of that call are not defined; the compiler is allowed to make up it's own behavior. For this particular compiler, I'd guess that the following is happening:

  • First, it looks like varargs calls involve pushing the arguments onto the stack in reverse order
  • So, it pushes temp (4th argument). Then post-increments it.
  • Then, it pre-increments temp and pushes it (3rd argument).
  • Then, temp is pushed again (2nd argument).
  • Finally, your pattern (1st argument) is pushed and the call is made.

It would be a really bad idea to rely on this behavior, though.

link|improve this answer
feedback

The reason is that the behavior of that statement is not defined. There is no guarantee (in c) of the order in which arguments are evaluated.

link|improve this answer
feedback

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