Hi All,
I am using Visal Studio 2005. I couldnt understand how Visual Studio is executing follwing code. Can anybody please tel me. I have worked on Turbo C compiler, VC++ compiler and Visual studio. I could understand the output of other two compilers for the following code. But i couldnt understand the same of Visual studio.
int i=5;
printf("%d %d %d %d %d %d\n",i,i--,--i,i++,--i,i++);