, - . , , , int intMatrixAll . , int , , testMatrix, NULL.
, , .. *, malloc d , testMatrix ,
. R. Samuel Klatchko .
, - , . int, .
int **testMatrix;
void intMatrixAll(int row, int col, int ***matrix){
// In here use this (*matrix)
}
// Then the calling of the function would look like this
intMatrixAll(testArrRow, testArrCol, &testMatrix);
// Note the ampersand above to treat this double pointer passed in by reference
, ,
,
.