3
Reply

What will be the output of below code snippet?Class A{ Int a=10; Int b=20;A(int a, int b) { a=a; b=b; Console.write(a, b); Console. Write(this.a, this.b) }Method Call A(5,10)

Rahul Chavan

Rahul Chavan

Apr 05, 2016
545
0