home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
EXP.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1985-02-03
|
214 b
|
11 lines
main() /* exp.c -- computes exponential value of a number */
{
float x = 1.0;
float y = 0.0;
printf("exp of 1 is %f; of 0, %f.", exp(x), exp(y));
/* Correct result: 1 is 2.718282; 0 is 1.000000 */
}