Is there a function in C language to calculate degrees/radians? December 23, 2023 by Tarik #include <math.h> inline double to_degrees(double radians) { return radians * (180.0 / M_PI); }