Suppose I wanted to create a new array with every loop? The arrays created have to have different names like a1, a2, a3 etc. Anything will do.
The code goes like
for(int i = 0; i < 9; i++){
int[] a/*The index goes here*/ = new int [9]
}
Can I do such a thing? :confused:
