C++ Programming/Code/Standard C Library/Functions/cos

From Wikibooks, open books for an open world
Jump to navigation Jump to search

cos[edit | edit source]

Syntax
#include <cmath>
float cos( float arg );
double cos( double arg );
long double cos( long double arg );

The cos() function returns the cosine of arg, where arg is expressed in radians. The return value of cos() is in the range [-1,1]. If arg is infinite, cos() will return NAN and raise a floating-point exception.

Related topics
acos - asin - atan - atan2 - cosh - sin - sinh - tan - tanh