expand icon
book C++ Programs to Accompany Programming Logic and Design 8th Edition by Jo Ann Smith cover

C++ Programs to Accompany Programming Logic and Design 8th Edition by Jo Ann Smith

Edition 8ISBN: 978-1285867410
book C++ Programs to Accompany Programming Logic and Design 8th Edition by Jo Ann Smith cover

C++ Programs to Accompany Programming Logic and Design 8th Edition by Jo Ann Smith

Edition 8ISBN: 978-1285867410
Exercise 4
Overloading Functions
In this exercise, you use what you have learned about overloading functions to answer Question 1.
In Figure 1, which function header would the following function calls match? Use a line number as your answer.
Figure 1 Function headers and variable declarations
Overloading Functions In this exercise, you use what you have learned about overloading functions to answer Question 1. In Figure 1, which function header would the following function calls match? Use a line number as your answer. Figure 1 Function headers and variable declarations     a. ans2 = sum(2, 7, 9);  b. ans1 = sum(number2, number2);  c. ans1 = sum(10.0, 7.0);  d. ans2 = sum(2, 8, number2);  e. ans2 = sum(3, 5);
a. ans2 = sum(2, 7, 9);
b. ans1 = sum(number2, number2);
c. ans1 = sum(10.0, 7.0);
d. ans2 = sum(2, 8, number2);
e. ans2 = sum(3, 5);
Explanation
Verified
like image
like image

a. Appropriate function header for funct...

close menu
C++ Programs to Accompany Programming Logic and Design 8th Edition by Jo Ann Smith
cross icon