Computer Science, asked by mohisrivastavamahi13, 7 months ago

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 ayasmitamanna146
2

Explanation:

the output would be blank as there is no printing statement.................

Answered by Oreki
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