find the value of x , y and z of int
int x=0 ;
int y = x++ + ++x + x-- + --x ;
int z = x++
Answers
Answered by
0
Answer: x=2, y=3, z=1
Explanation:
Similar questions