Does someone know how I can use dynamically allocated multi-dimensional arrays using C? Is that possible?
int rows, columns; /* initialize rows and columns to the desired value */ arr = (int**)malloc(rows*sizeof(int*)); for(i=0;i