Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 11, 2019 14:13
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/0c59404401a70f87a9964d29650506b3 to your computer and use it in GitHub Desktop.
Save parzibyte/0c59404401a70f87a9964d29650506b3 to your computer and use it in GitHub Desktop.
// Recorrer producto
printf("Imprimiendo producto\n");
for (int i = 0; i < FILAS_MATRIZ_B; i++) {
for (int j = 0; j < COLUMNAS_MATRIZ_B; j++) {
printf("%d ", producto[i][j]);
}
printf("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment