[Solved] How to run the sin(double x) method in C
double sin(double x) Is a function declared in the math.h header. It can be used anywhere you’d like – in main() or in any other function you write that is called within main(). However, the way you show it called in main will not do anything useful. The sin() function takes a double as an … Read more