Predict the output
int a=6 b=5;
a+=a++%b++*a+b++*--b
Answers
Answered by
16
Answer:
49
Explanation:
a= 6 + (6 % 5) × 7 + (6 × 6)
Hence a = 6 + 1 × 7 + 36 = 49
Similar questions