Computer Science, asked by urmiladebbarma, 2 months ago

Int a=34;
Int b=21;
Int c=a++ + ++b;
Int d= --a + --b + c--;
Int e= a+b+c
SOP(e) ;
SOP(a) ;
SOP(b) ;
SOP(c) ;​

Answers

Answered by AreetraSircar
1

Solution:

c = 34 + 22

= 56

d = 33 + 20 + 56

= 109

e = 34 + 21 + 56

= 112

Output

112

34

21

56.

Similar questions