Everything

cos


Cosine

[Classification]

Mathematical library

[Syntax]

#include <math.h>

double __far cos(double x);

[Return value]

Returns the cosine of x.

If x is Not-a-Number or ±∞, cos returns Not-a-Number (NaN) and sets macro EDOM to global variable errno.

If the solution is a denormal number, cos sets macro ERANGE to global variable errno.

[Description]

This function calculates the cosine of x. Specify the angle in radian.