int a; //start of question1B code. a = 5; cout << "Before the call, a = " << a << endl; Function1(a); cout << "After the first call, a = " << a << endl; Function2(a); cout << "After the second call, a = " << a << endl; // end of question1B code.
// start of question 1C // Function1(5); // Function2(5); // end of question 1C
5 = -99
// start of question 1D // b = 3.998; // Function1(b); // Function2(b); // cout << "After the second call, b = " << b << endl; // end of question 1D