home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / intinp.c < prev    next >
Text File  |  1989-02-08  |  316b  |  17 lines

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*              INTINP()        */
  4. /*                    */
  5. /* Allows inputting of an integer from  */
  6. /* the keyboard.             */
  7. /*                    */
  8. /*--------------------------------------*/
  9. intinp()
  10. {
  11.         char s[10];
  12.         int d;
  13.     scanf("%s",s);
  14.     d=atoi(s);
  15.     return(d);
  16. }
  17.