Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 11, 2020 02:06
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/34a58f77f114a46d6bad01de83438379 to your computer and use it in GitHub Desktop.
Save parzibyte/34a58f77f114a46d6bad01de83438379 to your computer and use it in GitHub Desktop.
void clonarMatriz(char origen[5][5], char destino[5][5]) {
memcpy(destino, tableroOriginal, sizeof(char)*5*5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment