Question: Product of an array) Write two overloaded functions that return the product of elements in an array with the following headers: int product(const int array[],
Product of an array) Write two overloaded functions that return the product of elements in an array with the following headers:
int product(const int array[], int size);
double product(const double array[], int size);
Write a main function that prompts the user to enter 3 double values (and save into an array), invokes this function, and displays the product of these values.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
