a=5,b=8 find a*=b++ + ++a - --a*b--;
Answers
Answered by
0
Answer:
a=5,b=8 find a*=b++ + ++a - --a*b--;
So a* = -155
Answered by
1
After Execution:
a = -155
Explanation:
Given, a = 5 and b = 8, then,
a *= b++ + ++a - --a * b--
a *= 8 + 6 - 5 * 9
a *= 14 - 45
a *= -31 or a = a * -31
a = 5 * -31
a = -155
Similar questions