![]() |
VOOZH | about |
The sin() function in C is a standard library function to find the sine value of the radian angle. It is used to evaluate the trigonometric sine function of an angle. It takes the radian angle as input and returns the sin of that angle. It is defined inside <math.h> header file.
The syntax of sin() function in C is:
double sin(double angle);
sin(3.14) = 0.00 sin(10) = -0.54