Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The hypotenuse function is correct, but the main function has a problem. Explain why it may not work, and show a way to fix it.
The hypotenuse function is correct, but the main function has a problem. Explain why it may not work, and show a way to fix it. Your fix must be to the main function only; you must not change the hypotenuse function in any way.
#include
#include
using namespace std;
void hypotenuse(double leg1, double leg2, double* resultPtr)
{
*resultPtr = sqrt(leg1*leg1 + leg2*leg2);
}
int main()
{
double* p; hypotenuse(1.5, 2.0, p);
}
cout << "The hypotenuse is " << *p << endl;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started