void freeArray(int **a, int m) {
    int i;
    for (i = 0; i < m; ++i) {
...

C Freeing memory of a Multidi...

by Andreas Grech, November 28, 2009 17:18, 2 refactorings, tagged with c, array, malloc, free

Is this the correct way to ...

C398dd0c2ca7d5281d0a83242a924e76 Talk