When an error encountered during file processing, the program execution will be terminated and error messages will be displayed. Following measures may be adopted to identify of avoid errors during file processing :
FILE *fptr;
if(ferror(fptr)==0)
printf("\n The file is available for processing.");
else
printf("\n Error in accessing the file!");
if(fptr == NULL)
printf("\n No content or file does not exist");
if(feof(fptr) == EOF)
printf("\n End of file is reached");
Entering an invalid file name or trying to write data to a write protected disk are some of the other reasons for errors during file processing.
It's a special area where you can find special questions and answers for CSE students or IT professionals. Also, In this section, we try to explain a topic in a very deep way.