What would be the output of the following code?
public class NetStatus {
int statusCount = 23;
public class NetStatusDetail {
public void printStatus() {
System.out.println("Your Detail = " + statusCount);
}
}
}
a) Your Detail = 0
b) Your Detail = 23
c) Compilation error
d) Runtime error