home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
TAN.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1985-01-24
|
189 b
|
14 lines
main() /* tan.c -- illustrates tan(), the tangent function */
{
double x;
double result;
x = 85;
result = tan(x);
printf("%f", result);
/* correct answer is 0.178870 */
}