home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
ATOF.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-16
|
183 b
|
9 lines
main() /* atof.c -- Converts ASCII string to floating point number */
{
char *c;
c = " -123.456e7";
printf("%lf", atof(c));
/* correct result is -1234559999.999991 */
}