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
0
Answer:
x=18
Explanation:
x += ++x + x-- + x++ + x
x = x + (++x + x-- + x++ + x)
= 3 + 4 + 4 + 3 + 4
= 18
Similar questions