I\'ve written the following function:
void swap_pointers(int * x, int * y){ int temp = x; x = y; y = temp; }
This is swapping the add