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