home *** CD-ROM | disk | FTP | other *** search
- main() /* exit.c -- illustrates use of exit() */
- {char name[20];
- char buf[1];
- int fin;
-
- printf("Filename please: ");
- gets(name);
- if ((fin = open(name,0)) == -1)
- { printf("No such file: %s. Bye.\n",name);
- exit();
- }
- while(read(fin, buf, 1) >= 0)
- if (buf[0] == 26) exit();
- else putchar(buf[0]);
- close(fin);
- /* Result: if the name of a file which does not exist is given */
- /* program exits immediately.*/
- }