//Kyu Bae //program 8A //3-10-00 //Purpose: //This program provides the opportunity to: // 1) Wrtie over loaded fuctions. // 2) Modify a function to make it inline. // 3) Use a reference variable. // 4) Reinforce objectives of previous lab projects. #include #include void SwapFunc(char &cValue1, char &cValue2); void SwapFunc(int &iValue1, int &iValue2); //input:none //get two characters and integers and swap them. //output: return swaped integers and characters. int main (void) { char cFirst, cSecond; int iNum1, iNum2; cout<<"This program will swap two character vaiables."<>iNum1 >>iNum2; cout <<"You entered "<< iNum1 <<" then " << iNum2 <