Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
#include <stdio.h>
int main()
{
int i=1;
printf("%d %d %d\n",i,++i,i++);
i=1;
printf("%d %d %d\n",++i,i,i++);
i=1;
printf("%d %d %d\n",i++,++i,i);
i=1;
printf("%d %d %d\n",i++,i,++i);
i=1;
printf("%d %d %d\n",++i,i++,i);
i=1;
printf("%d \n",(++i)*(++i)*(++i));
i=1;
printf("%d %d %d\n",++i, ++i, ++i);
return 0;
}
Output (GCC)
3 3 1
3 3 1
2 3 3
2 3 3
3 1 3
36
4 4 4
Output(Visual Studio)
3 3 1
3 3 1
2 3 3
2 3 3
3 1 3
64
4 4 4
Can any one explain this?
