// File: test_init_var2.java // // Author: Rahul Simha // Created: Sept 3, 1998 // // Illustrates what the compiler does with // uninitialized variables (it complains). public class test_init_var2 { public static void main (String[] argv) { double x2; int[] A2; char c2; System.out.println ("x2 = " + x2); System.out.println ("A2 = " + A2); System.out.println ("c2 ='" + c2 + "'"); } }