Pre and post incrementvoid main() { int a=1; printf("%d %d %d",a,++a,a++); } How come the output is 3 3 1.Sho...
This user does not accept Private Messages