solve the question using c language? The cosine of an angle can be computed from
ID: 3686430 • Letter: S
Question
solve the question using c language?
The cosine of an angle can be computed from the following infinite series: Complete a program that reads an angle x (in radians) from keyboard. Then, in a function, compute the cosine of the angle using the first terms of this series. Print the value computer along with the value of the cosine computed using the C library function. Complete the definition of s_cosine function and n_fact function. Use a for loop and a n_fact function which gives factorial of integer using multiplication to complete s_cosine function and use for a loop to complete n_fact function.