Computer Science, asked by vedant8264, 3 months ago

give output of the expression x+=x++ + ++x+ --x+x-- when x=8​

Answers

Answered by ItzMeSam35
1

Solution :-

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

x = 44

Explanation :-

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

8 += 8 + 10 + 9 + 9

x = 8 + 8 + 10 + 9 + 9

x = 44

Similar questions