Computer Science, asked by as4981727, 1 month ago

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 pradhanneha931
0

Explanation:

--(-20)+ ++10 -++(-5)

-20+10+5

-10+5

-5.

Similar questions