I have to store a String
matrix(3x20) inside an array
whose length
may vary.
I am trying the following code but I am getting an incompatible types
error.
How could I fix this error?
My code is:
int x=0;
String[] arrayF=new String[10];
arrayF[x]= new String[3][20];