#include<stdio. h>
int main(void){
int i=5;
printf("%d %d %d %d %d\n",i++,i--,++i,--i,i);
return 0;
}
This gives me : 4 5 5 5 5
How ???
Can anyone please give me some hint as to why I am getting this ??
Thanks & regards,
Onkar
int main(void){
int i=5;
printf("%d %d %d %d %d\n",i++,i--,++i,--i,i);
return 0;
}
This gives me : 4 5 5 5 5
How ???
Can anyone please give me some hint as to why I am getting this ??
Thanks & regards,
Onkar
Comment