// FILE: intxchng.cpp // Exchanges two type int values #include void exchange (int& a1, int& a2) { // Local data ... int temp; temp = a1; a1 = a2; a2 = temp; } // end exchange