home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
ATOL.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-21
|
216 b
|
11 lines
main() /* atoi.c -- converts ASCII string to a long integer */
{
char *c;
long result;
c = " -123234.456e7";
result = atol(c);
printf("\nlong result is %ld", result);
/* correct result is -123234 */
}