- 2
what is the output of this ?with explanation please.. int x=2 , y=3 , z=0 ; z=(x++)*(x++)+(++y)*(++y) ; cout << z ;
int x=2 , y=3 , z=0 ; z=(x++)*(x++)+(++y)*(++y) ; cout << z ; //c++ code
3 ответов
+ 1
just run it
0
i tried but couldn't understand it !