Computer Science, asked by perween283, 4 months ago

Give the output:
int a=5
System.out println(++a*a++).​

Answers

Answered by Oreki
1

Output:

  36

Explanation:

  Given, a = 5,

     > ++a * a++

     > 6 * 6

     > 36

Similar questions