// swaps values of two ints after getting fixed by // YOUR NAME(S), TODAY'S DATE void intswap(int a, int b) { int temp = a; a = b; b = temp; }