Print All Trigonometric Ratios: C Program
Satish B
http://technotip.com/6679/print-all-trigonometric-ratios-c-program/
If value of an angle is input through the keyboard, write a c program to print all its Trigonometric Ratios.
Formula To Convert Degree To Radian radian = degree * (PI / 180.0); where PI = 3.14159; (constant value)
we include math.h header file and use methods present in it to get: sin() cos() tan()
To get cosec() = 1 / sin(); To get sec() = 1 / cos(); To get cot() = 1 / tan();
tan() value can also be obtained using sin() / cos(); cot() value can also be obtained using cos() / sin();
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=-FMdZ456FUA
6075262 Bytes