Computer Science, asked by moulirout, 6 months ago

What will be the value of “x” after execution of x=(++x + y++) * z++; (if x=0,y=0,z=0)​

Answers

Answered by Deepakdeepakpal786
2

Answer:

x=(1+0)*0

x=1*0

x=0

here value of x is increased by 1 bcz of prefix operator ++x

Similar questions