Answered step by step
Verified Expert Solution
Link Copied!

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;

}

d. The match function is supposed to return true if and only if its two C string arguments have exactly same text. Explain what the problems with the implementation of the function are, and show a way to fix them. // return true if two C strings are equal

bool match(const char str1[], const char str2[]) { while (str1 != 0 && str2 != 0) // zero bytes at ends

{

if (str1 != str2) // compare corresponding characters return false; str1++; // advance to the next character str2++;

}

return str1 == str2; // both ended at same time?

}

int main()

{

char a[10] = "pointy"; char b[10] = "pointless";

if (match(a,b)) cout << "They're the same! ";

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Peter Robb,Carlos Coronel

5th Edition

061906269X, 9780619062699

More Books

Students also viewed these Databases questions

Question

Why could the Robert Bosch approach make sense to the company?

Answered: 1 week ago