Computer Science, asked by mysteriousmoon27, 17 days ago

give the output of th following 1. int a= 8 a= ++a+ a++-++a answer please​

Answers

Answered by chinchachu1810
1

Answer:

7 in java

Explanation:

a=8

a=  ++a(9) + a++(10) - ++a(11)

a=     9+   9 - 11 =7

Similar questions