home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / EXIT.C < prev    next >
Encoding:
Text File  |  1985-02-16  |  440 b   |  19 lines

  1. main()    /* exit.c -- illustrates use of exit() */
  2. {char name[20];
  3. char buf[1];
  4. int fin;
  5.  
  6.     printf("Filename please: ");
  7.     gets(name);
  8.     if ((fin = open(name,0)) == -1)
  9.     {    printf("No such file: %s. Bye.\n",name);
  10.         exit();
  11.     }
  12.     while(read(fin, buf, 1) >= 0)
  13.         if (buf[0] == 26) exit();
  14.         else putchar(buf[0]);
  15.     close(fin);
  16. /*    Result: if the name of a file which does not exist is given */
  17. /*           program exits immediately.*/
  18. }
  19.