home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* INTINP() */
- /* */
- /* Allows inputting of an integer from */
- /* the keyboard. */
- /* */
- /*--------------------------------------*/
- intinp()
- {
- char s[10];
- int d;
- scanf("%s",s);
- d=atoi(s);
- return(d);
- }