which is the value of x and y after running this code? class a { public static void main(String args[]) { int x=1; int y=x++; } }
Reveal answer
Fill a bubble to check yourself
which is the value of x and y after running this code? class a { public static void main(String args[]) { int x=1; int y=x++; } }