Objective
Implement a function that exchanges the values stored at two integer addresses.
Steps
$ int x = 7, y = 99; swap_int(&x, &y);
x = 99, y = 7
$ int x = 0, y = -3; swap_int(&x, &y);
x = -3, y = 0
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement a function that exchanges the values stored at two integer addresses.
Steps
$ int x = 7, y = 99; swap_int(&x, &y);
x = 99, y = 7
$ int x = 0, y = -3; swap_int(&x, &y);
x = -3, y = 0
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code