Thread
:
pointers
View Single Post
wrecker
Go4Expert Member
15Apr2007,14:40
int **p;
p=(int **)malloc(m*n*sizeof(int));
m and n are the rows and columns .....
this is how you have to allocate memory to 2D array. No one max limit is needed.....