Computer Science, asked by eishikachithreddy, 6 hours ago

What is the value stored in the varable x after evaluating the following expression x+=++x)+(x--)+(x++)+x; if x=3​

Answers

Answered by Sanskar260
0

Answer:

x=18

Explanation:

x += ++x + x-- + x++ + x

x = x + (++x + x-- + x++ + x)

= 3 + 4 + 4 + 3 + 4

= 18

Similar questions