[Solved]Create New C Program Incorporates Functions Listed Q37246380

Create a new C program that incorporates all of the functionslisted below.
Part 1: Write two simple functions called fahrToCels 0 and celsToFahr 0 respectively. Each function receives one parameter, a double, and returns the converted value as a double. Part 2: simple function named hypotenuse ) that receives two double parameters that correspond to two legs of a right triangle. Have the function compute the hypotenuse of the triangle given these two legs and the Pythagoren Theorem and return that value as a double. Part 3: Write a simple function named summation () that receives one integer parameter. Have the function compute the summation of that number using a loop and return that value as an integer. main() function: Write at least three test cases for each of the four functions you wrote that involve calling the function and comparing the expected result to the value returned. For example: printf (“fahrToCels (50.0) 10.0 t actual:8.21fIn”, fahrToCels (50.0)) Show transcribed image text Part 1: Write two simple functions called fahrToCels 0 and celsToFahr 0 respectively. Each function receives one parameter, a double, and returns the converted value as a double. Part 2: simple function named hypotenuse ) that receives two double parameters that correspond to two legs of a right triangle. Have the function compute the hypotenuse of the triangle given these two legs and the Pythagoren Theorem and return that value as a double. Part 3: Write a simple function named summation () that receives one integer parameter. Have the function compute the summation of that number using a loop and return that value as an integer. main() function: Write at least three test cases for each of the four functions you wrote that involve calling the function and comparing the expected result to the value returned. For example: printf (“fahrToCels (50.0) 10.0 t actual:8.21fIn”, fahrToCels (50.0))
Expert Answer
Answer to Create a new C program that incorporates all of the functions listed below…. . . .
OR

