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

  1. main()    /* ferror.c -- illustrates use of ferror() */
  2. {FILE *fp;
  3. char name[20], c;
  4. int ret;
  5.  
  6.     printf("Filename: ");
  7.     gets(name);
  8.     ret = ferror(fp);
  9.     if(ret == -1)
  10.         puts("You're file had an error condition; we fix");
  11.     puts("No error condition detected.");
  12.         clrerr(fp);
  13.     if ((fp = fopen(name,"r")) == NULL)
  14.         exit();
  15.     while((c = getc(fp)) != EOF)
  16.         putchar(c);
  17.     fclose(fp);
  18.  
  19. }
  20.