C Program To Convert Degree To Radian
Satish B
http://technotip.com/7376/c-program-to-convert-degree-to-radian/
Lets write a C program to convert angle from Degree to Radian.
Formula To Convert Degree To Radian radian = degree x (M_PI / 180.0); where M_PI is a constant present in header file / library file math.h and its approximately equal to 3.14;
Note: Trigonometric Ratios like Sin, Cos, Tan etc take radian value as input and not degrees. So its important to learn how to convert angles from degree to radian.
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=3h9iUUlqTlA
4607722 Bytes