/** * swap.c * * David J. Malan * malan@harvard.edu * * 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 %i\n", x); printf("y is %i\n", y); printf("Swapping...\n"); swap(&x, &y); printf("Swapped!\n"); printf("x is %i\n", x); printf("y is %i\n", y); } /** * Swap arguments' values. */ void swap(int* a, int* b) { int tmp = *a; *a = *b; *b = tmp; }