c) int a=10,b=20, c;
C-=+a+++b+ --a + --b;
System.out.println(+c);
Answers
Answered by
0
Answer:
Answer - 50
write question correctly
mark me as brailist
and please thanks by click on heart
Answered by
2
Answer:-
Given,
a=10, b=20
c=a + ++b + --a + --b
>> c=10+21+9+20
>> c=30+30
>> c=60
Hence, the value of c is 60.
Similar questions