I need support with this Asian Studies question so I can learn better. Write a review of the reading Marcus and Chen Inside Outside Chinatown Requirements: 250+ | .doc fileATTACHMENTSmarcus_and_chen_inside_outside_chinatown.pdf
Write a simple program to validate passing by value and passing by reference
For this assignment, prepare two related programs as .cpp files and submit them in a single zipped file.
Program #1 Instructions:
- 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