calculate the tangent of an angle
#include <math.h> double tan( double x );
The tan() function computes the tangent of x (measured in radians). A large magnitude argument may yield a result with little or no significance.
The tangent value. When an error has occurred, errno indicates the type of error detected.
#include <stdio.h>
#include <math.h>
void main()
{
printf( "%f\n", tan(.5) );
}
produces the output:
0.546302
ANSI
| Safety: | |
|---|---|
| Interrupt handler | No |
| Signal handler | No |
| Thread | Yes |