home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / FGETS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  428 b   |  25 lines

  1. /* line-at-time file reader */
  2.  
  3. #define MAXLEN 80
  4.  
  5. main()    /* fgets.c -- demonstrates use of fgets() */
  6. {
  7.     FILE *fi;
  8.  
  9.     char source[25], line[MAXLEN], *p;
  10.  
  11.     printf("Input filename: ");
  12.     gets(source);
  13.     if((fi = fopen(source, "r")) == NULL) {
  14.         printf("\tCan't open %s\n",source);
  15.         exit();
  16.     }
  17.     p = line;
  18.     while(p != NULL) {
  19.         p = fgets(line,MAXLEN,fi);
  20.         printf(line);
  21.     }
  22.     fclose(fi);
  23.     puts("\n{DONE}");
  24. }
  25.