Computer Science, asked by sumonam180, 2 months ago

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 Krjit
0

Answer: x=2, y=3, z=1

Explanation:

Similar questions