give output of the expression x+=x++ + ++x+ --x+x-- when x=8
Answers
Answered by
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