+ 1
Can you please explain to me why the correct answer is 1?
Please explain Int x=0, y=0; If(++x>4&&++y>2) X++ Syso(x)
2 Answers
+ 4
Because here ++x will increase the value of x means x will be 1 but your if condition is false so it will not go inside.
That is why x is 1



