home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
ATOI.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
|
211 b
|
10 lines
main() /* atoi.c -- converts ASCII string to an integer number */
{
char *c;
long number;
c = "-1234TEST";
number = atoi(c);
printf("Integer number is: %d", number);
/* correct result is -1234 */
}