Dynamic memory allocation of 2d arraysThis tip submitted by nandam on 2006-08-29 06:26:56. It has been viewed 10125 times.Rating of 6.4 with 39 votes To dynamicallly alloc an array of size mXn with fewer memory allocations than n + 1: double **M; M= (double**)malloc(m*sizeof(double*)); M[0] =(double*)malloc(m*n*sizeof(double)); for(i=1;i |