home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / READ.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  339 b   |  18 lines

  1. main()    /* read.c -- reads a file and echoes it on screen */
  2.  
  3. {char name[20];
  4. char buf[1];
  5. int fin;
  6.  
  7.     printf("Name please: ");
  8.     gets(name);
  9.     if ((fin = open(name,0)) == -1)
  10.     {    printf("No such file: %s\n",name);
  11.         exit();
  12.     }
  13.     while(read(fin, buf, 1) >= 0)
  14.         if (buf[0] == 26) exit();
  15.         else putchar(buf[0]);
  16.     close(fin);
  17. }
  18.