if a =48,b=13
find the output of the following question
a+=b++ * 5/a++ +b
Plz give correct answer
Answers
Answered by
2
After Execution:
a = 63
Explanation:
> a += b++ * 5 / a++ + b, a = 48 and b = 13,
> a += 13 * 5 / 48 + 14
> a += 65 / 48 + 14
> a = a + 1 + 14
> a = 48 + 15
> a = 63
Similar questions