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