Give the output:
int a=5
System.out println(++a*a++).
Answers
Answered by
1
Output:
36
Explanation:
Given, a = 5,
> ++a * a++
> 6 * 6
> 36
Similar questions