Swap Numbers
Explore how to swap two numbers in C++ by implementing two functions: one using pointers with call by address and another using references with call by reference. Understand the difference and mechanics behind these approaches with hands-on coding exercises.
We'll cover the following...
We'll cover the following...
Challenge
Write a program that receives two numbers from the keyboard and then swaps them using a call by address and a call by reference.
For this challenge, you are required to make two functions:
1. swapByAddress() ...
Swap two numbers