Description: For this problem you will write a C++ program with two function: a main function and a swap function.
You will read in two integers in your main function and then swap the values of those two integers by
calling the swap function.
Please enter value of x: 76
Please enter value of x: 23
x and y 76 and 23 respectively
Calling the swap function
Inside swap function
After Swapping
x and y 23 and 76 respectively
To Search:
File list (Check if you may need any files):
Q55.CPP
Q8.CPP