Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*|| filas_m ==> número de filas || columnas_m ==> número de columnas || mapa ==> matriz de caracteres ||*/
- char **mapa = malloc(sizeof(char)*filas_m);
- for(i = 0; i < filas_m; i++)
- mapa[i] = malloc(sizeof(char)*columnas_m);
Advertisement
Add Comment
Please, Sign In to add comment