+ 6
Its ouput is 3 3 1 , but why ?
int main(){ int a = 1 ; printf ( "%d %d %d", a, ++a, a++ ) ; return 0;
2 odpowiedzi
+ 2
It can be, that those arguments are passed in "from right to left" order.
+ 1
The execution process always start from right to left.....
That's why. ...☺☺