What is demonstrated by the following code?
public class Test {
public static void main(String[] args) {
final int num;
num = 100;
System.out.println(num);
}
}
What is demonstrated by the following code?
public class Test {
public static void main(String[] args) {
final int num;
num = 100;
System.out.println(num);
}
}