I don\'t truly understand some basic things in C like dynamically allocating array of arrays. I know you can do:
int **m;
in order to decla
It's not a 2d array - it's an array of arrays - thus it needs the multiple allocations.