b) Give the output of the following:
i. int a = 20, b = 40, c = 50, x;
x= c * a-- + (a % ++b) - (b* --C) % b;
Answers
Answered by
2
Explanation:
the output would be blank as there is no printing statement.................
Answered by
1
Output:
x = 1019
Explanation:
x = c * a- - + (a % ++b) - (b * - -c) % b
x = 50 * 20 + (19 % 41) - (41 * 49) % 41
x = 1000 + (19) - (2009) % 41
x = 1000 + 19 - 0
x = 1019
Similar questions