If a = - 20, b = 10, c = -5;
Write the output of the following
(i)--a + ++b - ++c;
(ii) a-- + ++C+b++ + a + 7;
in Java programming
Answers
Answered by
0
Explanation:
--(-20)+ ++10 -++(-5)
-20+10+5
-10+5
-5.
Similar questions