home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
COS.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-22
|
197 b
|
14 lines
main() /* cos.c -- computes cosine of a number */
{
double x;
double result;
x = 23.0;
result = cos(x);
printf("cosine equals %f", result);
/* Correct answer is: -0.532833 */
}