0
int a=5; b=6; c=2; int z; z=++a + a++ - b-- + c++ + ++c; printf z
Can anybody tell me the output of this.? Is it 12 r 13?
1 Antwort
+ 4
Deepak K it depends on compiler.. when there is combination of post and prefix operator, different compiler behaves differently and sometime same compiler behave differently at different time..
I don't see any practical examples of such statement..
one should avoid this usage..