|
sinfunction
<cmath>
double sin ( double x ); float sin ( float x ); long double sin ( long double x ); Compute sine Returns the sine of an angle of x radians.In C++, this function is overloaded in <complex> and <valarray> (see complex sin and valarray sin). Parameters
Return ValueSine of x.PortabilityIn C, only the double version of this function exists with this name.Example
Output:
See also
|