The tan()
function returns the tangent of a number. To be more specific, it returns the tangent of a number in the radians float value.
Figure 1 shows the mathematical representation of the tan()
function.
Note:
- The
math.h
header file is required for this function.- This
tan()
function only works for right-angled triangles.
double tan(double num)
This function requires a number
that represents an angle
in radians
as a parameter.
In order to convert degrees
to radians
, use the following formula:
radians = degrees * ( PI / 180.0 )
tan()
returns the tangent
of a number (radians float value)
that is sent as a parameter.
#include<stdio.h>//header file#include<math.h>int main() {//positive number in radiansprintf("The tangent of %lf is %lf \n", 2.3, tan(2.3));// negative number in radiansprintf("The tangent of %lf is %lf \n", -2.3, tan(-2.3));//converting the degrees angle into radians and then applying tan()// degrees = 45.0// PI = 3.14159265// result first converts degrees to radians then apply tandouble result=tan(45.0 * (3.14159265 / 180.0));printf("The tangent of %lf is %lf \n", 45.0, result);}