CS201 – Introduction to Computing – Sabancı University 8 Example: Swap l Write a function that swaps the values of its two integer parameters void swap (int & a, int & b) { int temp; temp = a; a = b; b = temp; } l How do we use this in main.