| << Prev | Beej's Guide to C | Next >> |
Calculate the tangent of a number.
#include <math.h> double tan(double x) float tanf(float x) long double tanl(long double x)
Calculates the tangent of the value x, where x is in radians.
For those of you who don't remember, radians are another way of measuring an angle, just like degrees. To convert from degrees to radians or the other way around, use the following code:
degrees = radians * 180.0f / M_PI; radians = degrees * M_PI / 180;
Returns the tangent of x. The variants return different types.
double tanx; long double ldtanx; tanx = tan(3490.0); // round and round we go! ldtanx = tanl((long double)3.490);
| << Prev | Beej's Guide to C | Next >> |