home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 1
/
FishNMoreVol1.bin
/
more
/
code_examples
/
librar
/
intinp.c
< prev
next >
Wrap
Text File
|
1989-02-08
|
316b
|
17 lines
/*--------------------------------------*/
/* */
/* INTINP() */
/* */
/* Allows inputting of an integer from */
/* the keyboard. */
/* */
/*--------------------------------------*/
intinp()
{
char s[10];
int d;
scanf("%s",s);
d=atoi(s);
return(d);
}