Using Visual Studio
Write a simple program to validate passing by value and passing by reference.
Initialize a variable and display its value.
Pass the variable by value to a function. Change the value of the variable in the pass by value function. Display the modified value inside the function.
After the pass by value function returned, display the value again in the main function.
Pass the same variable, now passing by reference to another function. Change the value of the variable in the pass by reference function. Display the modified value inside the function.
After the pass by reference function returned, display the value again in the main function.
Program #2 Instructions:
Write another simple Address program to print the value of the memory addresses of the variables listed below:
a char
a string
an array of integers
an integer
a double