Consider the following program. Assume all variables are declared and the program compiles. #include using namespace std; void getVal(int&, int&); void procVal(int, int&); int x; int main() { int intNum1; int intNum2; x = 6; getVal(intNum1, intNum2); cout << intNum1 << " " << intNum2 << " " << x << endl; procVal(intNum1, intNum2); cout << intNum1 << " " << intNum2 << " " << x << endl; return 0; } void getVal(int& a, int& b) { cout << “Enter value for a: “ << endl; cin >> a; /// The user enters 1 cout << “Enter value for b: “ << endl; cin >> b; /// The user enters 2 x = a * b; } void procVal(int u, int& v) { int intNum3; intNum3= x; v = intNum3 * 4; u = u - v; } Answer the following questions: Considering the function getVal, both parameters are called by reference. What is passed into the function for the parameters, i.e., what do the parameters receive? HINT: Do not write ‘a reference parameter or a reference value’!
- Consider the following program. Assume all variables are declared and the program compiles.
#include <iostream>
using namespace std;
void getVal(int&, int&);
void procVal(int, int&);
int x;
int main() {
int intNum1;
int intNum2;
x = 6;
getVal(intNum1, intNum2);
cout << intNum1 << " " << intNum2 << " " << x << endl;
procVal(intNum1, intNum2);
cout << intNum1 << " " << intNum2 << " " << x << endl;
return 0;
}
void getVal(int& a, int& b)
{
cout << “Enter value for a: “ << endl;
cin >> a; /// The user enters 1
cout << “Enter value for b: “ << endl;
cin >> b; /// The user enters 2
x = a * b;
}
void procVal(int u, int& v)
{
int intNum3;
intNum3= x;
v = intNum3 * 4;
u = u - v;
}
Answer the following questions:
- Considering the function getVal, both parameters are called by reference. What is passed into the function for the parameters, i.e., what do the parameters receive? HINT: Do not write ‘a reference parameter or a reference value’!
void getVal(int& a, int& b)
{
cout << “Enter value for a: “ << endl;
cin >> a; /// The user enters 1
cout << “Enter value for b: “ << endl;
cin >> b; /// The user enters 2
x = a * b;
}
Step by step
Solved in 2 steps
- Recommended textbooks for youDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSONDatabase System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSONC How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag…Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education