Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 8, 2021 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/e7e85a685523e8355d99ce1a1e84f116 to your computer and use it in GitHub Desktop.
Save parzibyte/e7e85a685523e8355d99ce1a1e84f116 to your computer and use it in GitHub Desktop.
void muestraMatriz(char matriz[LONGITUD][LONGITUD])
{
int y;
for (y = 0; y < LONGITUD; y++)
{
int x;
for (x = 0; x < LONGITUD; x++)
{
char actual = matriz[y][x];
printf("| %c ", actual);
}
printf("|\n");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment