void matRaise( int n, int m, int ***a){ int **x; x = (int **) calloc(n, sizeof(int *) * (n)); for (int i = 0; i < n; i++) *(x + i) = (int *)ca