void imprimir(TMatriz m){ int i, j; for( i = 0; i < kDIM; i++){ for(j = 0; j < kDIM; j++){ printf(" %d", m[i][j]); } printf(" "); } }