Compute the cosine of an angle
#include <math.h> double cos( double x ); float cosf( float x ); long double cosl( long double x );
These functions compute the cosine of x (specified in radians).
The cosine of x. When x is +/-Inf, these functions return NaN.
#include <math.h> #include <stdio.h> #include <stdlib.h> int main( void ) { double value; value = cos( M_PI ); printf( "value = %f\n", value ); return EXIT_SUCCESS; }
produces the output:
value = -1.000000
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |