Computer Science, asked by bittuop, 12 hours ago

solve this as fast coz I uploaded this now 11feb 2022 and u will get brainliest​

Attachments:

Answers

Answered by ItzMeSam35
1

Solution :-

int a = 5, b = 6, c = 3;

a) s = ++a + a++ + a++

>> s = 6 + 6 + 7

s = 19

b) s = a++ + ++b + ++c

>> s = 5 + 7 + 4

s = 16

c) s = --a + b-- + --c

>> s = 4 + 6 + 2

s = 12

d) s = a++ + --b + c++

>> s = 5 + 5 + 3

s = 13

Similar questions