Having an array as shown below:
var arra= new String [50,50];
// New entries are added to the array and for each row added, count is increased by 1. The columns go up till incount which is always less than 50.
for(i=0;i<=count;i++)
{
for(j=0;j<incount;j++)
{
print (bigsub[i,j]);
}
}
Is there a more efficient way to achieve this? Can the same be done for the inner array too?