Comment by uecker
3 months ago
Double indirection arrays with multiple allocations are 25 years obsolete (ok, there are some use cases) but since C99 we prefer to do it like the parent.
In your code link you over allocate memory, sizeof *arr is enough and you need to dereference like with (*arr)[i][j]. You need to dereference it because it is a pointer to an array, if you dereference you get an array. You can also let the first dimensions decay then it looks like:
double (*arr)[m] = malloc(n * sizeof *arr);
arr[i][j] = ...
but this is not as safe because the bound of the outermost dimension is lost. (Edited)
No comments yet
Contribute on Hacker News ↗