Hi
Can any one help me what is the order of evaluation for the expressions in printf() function in C language.....
I have sooo much confusion in the expression like
a=10;
printf("%d",a++ - a++);
the output is -1
any one can help me how -1 is the output......
But when i am assiging the result of that expressiion in any variable then i got 0 value...I don't know the difference..
Thank You