Lab 9-6: Pass by Reference and Pass by In this lab, you complete a partially written C++ program that includes a function named multiplyNumbers () that multiplies two int values to find their product. Three ints should passed to the multiplyNumbers() function, the two numbers to be multiplied (numl and numa should be passed by value, and another int (product) to hold the product of the two number should be passed by reference, enabling the multiplyNumbers () function to change its value The source code file provided for this lab includes the necessary variable declarations and input and output statements. Comments are included in the file to help you write the remainder of the program. 1. Open the source code file named MultiplyTwo.cpp using Notepad or the text editor of your choice. 2. Write the multiplyNumbers () function, the function declaration, and the function call as indicated by the comments. Save this source code file in a directory of your choice, and then make that directory your working directory. 3. 4. Compile the source code file MultiplyTwo.cpp. 5. Execute the program. Rewrite the mu ltiplyNumbers () function to pass the two numnbers (num1 and num2) b- value and to pass product by address. 7. Save this program as MultiplyTwo2.cpp. 8. Compile MultiplyTwo2.cpp. 9. Execute the program. Both programs (MultiplyTwo.cpp and MultiplyTwo2.cpp) should generate the same output.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.1: Function And Parameter Declarations
Problem 11E
icon
Related questions
Question
100%

// MultiplyTwo.cpp - This program calculates the prodcut of two numbers. // It demonstrates pass by reference. // Input: None// Output: The product of two numbers#include <iostream>using namespace std;// Write function declaration hereint main() { int num1 = 10; int num2 = 20; int product = 0; // Print value of product before function call cout << "Value of product is: " << product << endl; // Call multiplyNumbers using pass by reference for product // Print value of calculated product cout << num1 << " * " << num2 << " is " << product << endl; return 0;} // End of main function// Write multiply Numbers function here; //use pass by reference for result of multiplication for MultiplyTwo//use pass by address for result of multiplication for MultipyTwo2

Lab 9-6: Pass by Reference and Pass by Address
in this lab, you complete a partially written C++ program that includes a function named
multiplyNumbers() that multiplies two int values to find their product. Three ints should h.
passed to the multiplyNumbers() function, the two numbers to be multiplied (num1 and numa
The source code file provided for this lab includes the necessary variable declarations and
input and output statements. Comments are included in the file to help you write the
remainder of the program.
1. Open the source code file named MultiplyTwo.cpp using Notepad or the text editor
of your choice.
2. Write the multiplyNumbers () function, the function declaration, and the function
call as indicated by the comments.
3. Save this source code file in a directory of your choice, and then make that directory
your working directory.
4. Compile the source code file MultiplyTwo.cpp.
5. Execute the program.
6. Rewrite the multiplyNumbers() function to pass the two numbers (num1 and num2) by
value and to pass product by address.
7. Save this program as MultiplyTwo2.cpp.
8. Compile MultiplyTwo2.cpp.
9. Execute the program. Both programs (MultiplyTwo.cpp and MultiplyTwo2.cpp)
should generate the same output.
Transcribed Image Text:Lab 9-6: Pass by Reference and Pass by Address in this lab, you complete a partially written C++ program that includes a function named multiplyNumbers() that multiplies two int values to find their product. Three ints should h. passed to the multiplyNumbers() function, the two numbers to be multiplied (num1 and numa The source code file provided for this lab includes the necessary variable declarations and input and output statements. Comments are included in the file to help you write the remainder of the program. 1. Open the source code file named MultiplyTwo.cpp using Notepad or the text editor of your choice. 2. Write the multiplyNumbers () function, the function declaration, and the function call as indicated by the comments. 3. Save this source code file in a directory of your choice, and then make that directory your working directory. 4. Compile the source code file MultiplyTwo.cpp. 5. Execute the program. 6. Rewrite the multiplyNumbers() function to pass the two numbers (num1 and num2) by value and to pass product by address. 7. Save this program as MultiplyTwo2.cpp. 8. Compile MultiplyTwo2.cpp. 9. Execute the program. Both programs (MultiplyTwo.cpp and MultiplyTwo2.cpp) should generate the same output.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Concept of Parenthesis
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr