This is my code:
int ** allocateSpace( int row, int col){
int i;
int **a;
a = malloc(sizeof(int *) * row);
for(i = 0; i < row; i ++)
a[i] = malloc(sizeof(int) * col);
return a;
}
My goal is to allocate certain spaces for a matrix with rows and columns given by the parameters, and return the pointers pointing to the matrix.
The above code works well.
But when I change the code to the following form:
void allocateSpace(int **a, int row, int col){
int i;
a = malloc(sizeof(int *) * row);
for(i = 0; i < row; i ++)
a[i] = malloc(sizeof(int) * col);
}
It seems like when returning from the allocateSpace function, the memory allocated was released(since I got a segmentation fault). But why? I mean I just wanna allocate certain memory for a given pointer, and it's all done in the subfunction.
Please tell me the reason why I got a seg error and the difference between the two function listed above. Thank you very much!