Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 11, 2020 02:12
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/a1db661d32c41b5fc37dbc10b5d7d904 to your computer and use it in GitHub Desktop.
Save parzibyte/a1db661d32c41b5fc37dbc10b5d7d904 to your computer and use it in GitHub Desktop.
char tableroOrigingal[5][5]; // < -- Matriz original
char tablero[5][5]; // <-- Matriz de destino
clonarMatriz(tableroOriginal, tablero);
// Si ahora modificamos a "tablero" no estaremos modificando a "tableroOriginal"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment