Kizspy | Question: 8
(Choose 1 answer)
What will be the output of the following code?
public class Test1 {
int x;x = 5;
public static void main(String[] args) { Test1 t = new Test1();System.out.println(t.x);
}
A. complie error
B. runtime error
C. 5
D. 0
FUOVER