Tan
Coldpeer
double tan(double radians);
Funkcja tan()
zwraca tangens kąta podanego w radianach.
Przykład
```c #include <stdio.h> #include <math.h>#define PI 3.14159265
int main ()
{
double param, result;
param = 60;
result = tan (param*PI/180);
printf ("Tangent of %lf degrees is %lf\n", param, result );
return 0;
}
<b>Zobacz też:</b>
* [[C/cos]]
* [[C/sin]]
* [[C/acos]]
* [[C/asin]]
* [[C/atan]]