.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
0
Answer:
c=a++ + ++a + ++a/b++;
System.out.println(a+”+“+b+”+“+c+”=”+(a+b+c))
Explanation:
Evaluate and give the output: (5)
Int a=9,b=7;
Similar questions