What is the output of the following program? import static java.lang.System.out; class sample1 { int a; public static void main(String args[]) { System.out.println(a); a++; } }
Reveal answer
Fill a bubble to check yourself
What is the output of the following program? import static java.lang.System.out; class sample1 { int a; public static void main(String args[]) { System.out.println(a); a++; } }