compute the cosine of an angle
#include <math.h> double cos( double x );
The cos() function computes the cosine of x (measured in radians).
the cosine value.
acos(), errno, sin(), tan()
#include <math.h> void main() { double value; value = cos( 3.1415278 ); }
ANSI
Math