Which two causes a compile error? float[] f= new float(3); float f2[]= new float[]; float f1= new float[3]; float f3= new float[3]; float f5[]= {1.of,2.of,3.of};?
Answers
Answered by
1
float[] f= new float(3);
&
float f1= new float[3];
&
float f1= new float[3];
Similar questions