Computer Science, asked by adarshraimark7, 5 months ago

a. z=a++ + ++a * (++a - a++)/5; a=4 evaluate it with Java rule​

Answers

Answered by pruthviraj62
0

x += x++ * x++ * x++ resolves to x = x+((x+2)*(x+1)*x)

Similar questions