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
1
Solution:
c = 34 + 22
= 56
d = 33 + 20 + 56
= 109
e = 34 + 21 + 56
= 112
Output
112
34
21
56.
Similar questions