Computer Science, asked by preithibagya834, 30 days ago

What will the output of the given expression if x=5
x+=x+(x++*x++)
In JAVA

Answers

Answered by kamalrajatjoshi94
0

Answer:

Answer:-

int x=5

x+=x+(x++*x++)

x=5+5+(5*6)

x=5+5+30

x=40

Similar questions