#include #include int** allocate(int n) { int **m; int i; m=(int**)malloc(n*sizeof(int*)); for (i=0; i