char** matriz;
int linhas;
int colunas ;
matriz = malloc (sizeof(char*) * linhas);
for (int i = 0; i < linhas; i++) {
matriz [i] = malloc (sizeof(char) * (colunas+1));
}
for (int i = 0; i < linhas; i++){
free(matriz[i]);
}
free(matriz);