IAMISSAM
11/13/2018 - 2:26 PM

swap

swap

void swap(int* a, int* b)
{
    int tmp = *a;

    *a = *b;
    *b = tmp;
}