Computer Science, asked by poonamyadav5145, 1 month ago

Evaluate and give the output: (5)

Int a=9,b=7;int c=a++ + ++a + ++a/b++;

System.out.println(a+”+“+b+”+“+c+”=”+(a+b+c));​

Answers

Answered by gargdhruv180
0

Explanation:

c = 9+11+12/7

c = 20 + 12/7

9 + 7 + 20 + 12/7 = 9+7+20+12/7

Similar questions