//Kyu Bae //program 10B-a //3-20-00 //Purpose: //This program provides the opportunity to: //1) Use pointers for the first time. //2) 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 <