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?