sin, sinf, sinl - sine function
#include <math.h>
double sin(double x);
float sinf(float x);
long double sinl(long double x);
Link with -lm
.
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
These functions return the sine of x
, where x
is given in radians.
On success, these functions return the sine of x
.
If x
is a NaN, a NaN is returned.
If x
is positive infinity or negative infinity, a domain error occurs, and a NaN is returned.