It is possible in processing to initialize and declare a one dimensional array in two steps, or in one.
int []a;
a= new int[100];
which is equivalent to :
int [] a=new int [100];
I would like to know if there is a similar method as above to do the same for 2 dimensional array.
int [][] array= new int[100][200];