Java - Constructors
What will be the output of this code?
class Person {
String name;
}
public class Test {
public static void main(String[] args) {
Person p = new Person();
System.out.println(p.name);
}
}