Skip to content

Instantly share code, notes, and snippets.

@chintanparikh
Created December 12, 2013 10:30
Show Gist options
  • Save chintanparikh/7925959 to your computer and use it in GitHub Desktop.
Save chintanparikh/7925959 to your computer and use it in GitHub Desktop.
void swap(int* a, int* b)
{
int temp = *a;
*a = *b;
*b = temp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment