Programmer Playground
what will be the output?int a=10;int b=5;int temp=a;a=b;b=temp;System.out.println(a+" "+b);
2 years ago | [YT] | 0
Programmer Playground
what will be the output?
int a=10;
int b=5;
int temp=a;
a=b;
b=temp;
System.out.println(a+" "+b);
2 years ago | [YT] | 0