/* ** Exchange two intergers in the calling function */ void swap (int *x, int *y) { int temp; temp = *x; *x = *y; *y = temp; }