Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 9, 2019 01:42
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/7d3dffc9dbe222528c3685feb125fc00 to your computer and use it in GitHub Desktop.
Save parzibyte/7d3dffc9dbe222528c3685feb125fc00 to your computer and use it in GitHub Desktop.
void intercambiar(int *a, int *b) {
int temporal = *a;
*a = *b;
*b = temporal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment