What will be the result stored in x after evaluating the following int x = 4; x=(x++) + (++x) +x
Answers
Answered by
0
Answer:
14
Explanation:
x = (4+1) + (1+4) + 4 = 5 + 5 + 4 = 14
Similar questions