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