A.char str[5]="hello"; B.char str[]={'h','e','l','l','o'}; C.char str[5]={"hi"}; D.char str[100]="";
A.float f[][]=new float[6][6]; B.float f[]=new float[6]; C.float f[][]=new float[][6]; D.float[][] f=new float[6][];
A.x[24]的值為null B.x[24]沒有值 C.x[25]的值為null D.x[0]沒有值