|
|
|||||
|
Get the Ebook
C Tutorial
Source Code
Function Reference
|
Dynamic memory allocation of 2d arraysThis tip submitted by nandam on 2006-08-29 06:26:56. It has been viewed 1794 times.Rating of 3.5 with 2 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 |
||||