Question: This is an example of a function where you pass parameters to the function and nothing is returned to the calling function. (the function returns
This is an example of a function where you pass parameters to the function and nothing is returned to the calling function. (the function returns void) Write a C function that will: 1. Function will determine if the three sides passed to the function defines a right triangle a*a + b*b = c*c 2. pythagorean theorem a*a + b*b = c*c 3. the length of the sides of the triangle are not passed in any particular order 4. Function will determine if the three sides read in define a right triangle 5. the three sides of the triangle are printed in the function 6. answer is printed in the function in the function 1. accept the three 2. determine whether this is a right triangle Output should look like the following ??? length of side 1 ??? length of side 2 ??? length of side 3 is a right triangle Or is not a right triangle example 01 4 length of side 1 5 length of side 2 3 length of side 3 is a right triangle example 02 4 length of side 1 7 length of side 2 3 length of side 3 is not a right triangle Use the output (cout) manipulators to format the output correctly [setw(?), fixed, right, left, etc] in main() 1. Ask the user for and read in 3 ints a. Length of side one of the triangle b. Length of side two of the triangle c. Length of side three of the triangle d. Call the function function header should be void determineRightTri(int side1, int side2, int side3)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
