Question: Develop a complete C++ program to perform arithmetic operations. You must include function named calc() which accepts an arithmetic operator (+ /) and two operands

 Develop a complete C++ program to perform arithmetic operations. You must

Develop a complete C++ program to perform arithmetic operations. You must include function named calc() which accepts an arithmetic operator (+ /) and two operands as input parameters. Function calc() should return the answer of applying the operator to the operands using reference parameter. For example, with variable declarations float a, b, ans; the function can be called by using calc(a, '*', b, ans) to calculate the expression a multiplied by b and the result is stored in ans. This program will prompt the user to input two float values, and then calls functions calc() four times to return the addition, subtraction, multiplication and division of the two input values Sample output: Enter two values: 3 7 Addition: 3 + 7 = 10 Subtraction: 3 - 7 = -4 Multiplication: 3 * 7 = 21 Division: 3 / 7 = 0.428571

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!