/**************************************************************************** * swap.c * * Computer Science 50 * David J. Malan * * Swaps two variables' values. * * Demonstrates passing by reference. ***************************************************************************/ #include // function prototype void swap(int *a, int *b); int main(void) { int x = 1; int y = 2; printf("x is %d\n", x); printf("y is %d\n", y); printf("Swapping...\n"); swap(&x, &y); printf("Swapped!\n"); printf("x is %d\n", x); printf("y is %d\n", y); } /* * Swap arguments' values. */ void swap(int *a, int *b) { int tmp = *a; *a = *b; *b = tmp; }