Question: Please I want the working code in C programming and output like in Pictures 78 full screen 4827813 view Problem 1 (35 points): Hyperbolic function
78 full screen 4827813 view Problem 1 (35 points): Hyperbolic function calculator Write a C program that calculates the value of hyperbolic sine, hyperbolic cosine. and two other terms (without using the hyperbolic functions in the math.h library). Your program MUST contain the following user-defined functions 1) may cosh input: real-valued x output real-valued y where y cosho which is calculated using the following Taylor series expression y cosh(x) 1 Even though the actual Taylor series has an infinite number of terms, we will terminate the series at n 38. 2) my sinh input: real-valued x output real-valued y where y sinh(x) using the following y sinh (x) x Even though the actual Taylor series has an infinite number of terms, we will terminate the series at n 39. 3) double factorial(int n) double product 1.0; int i for (i 2; i n; i++) product product i return product; Note: The factorial function should be used in your my cosh and my sinh functions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
