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 be passed to the multiplyNumbers() function, the two numbers to be multiplied (num1 and num2) should be passed by value, and another int (product) to hold the product of the two numbers 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. Instructions Open the source code file named MultiplyTwo.cpp using the code editor. Write the multiplyNumbers() function, the function declaration, and the function call as indicated by the comments. Execute the program by clicking the Run button. Rewrite the multiplyNumbers() function to pass the two numbers (num1 and num2) by value and to pass product by address. Execute the program. It should generate the same output. / MultiplyTwo.cpp - This program calculates the product of two numbers.  // It demonstrates pass by reference and then pass by address.  // Input:  None // Output:  The product of two numbers #include  using namespace std; // Write function declaration here int 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 multiplyNumbers function here; use pass by refere

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

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 be passed to the multiplyNumbers() function, the two numbers to be multiplied (num1 and num2) should be passed by value, and another int (product) to hold the product of the two numbers 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.

Instructions

  1. Open the source code file named MultiplyTwo.cpp using the code editor.

  2. Write the multiplyNumbers() function, the function declaration, and the function call as indicated by the comments.

  3. Execute the program by clicking the Run button.

  4. Rewrite the multiplyNumbers() function to pass the two numbers (num1 and num2) by value and to pass product by address.

  5. Execute the program. It should generate the same output.

    / MultiplyTwo.cpp - This program calculates the product of two numbers. 
    // It demonstrates pass by reference and then pass by address. 
    // Input:  None
    // Output:  The product of two numbers

    #include <iostream>
    using namespace std;
    // Write function declaration here


    int 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 multiplyNumbers function here; use pass by reference for result of multiplication. Then use pass by address.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education