Mega Code Archive
Get pointer to error message string how to use strerror
#include
#include
#include
int main ()
{
FILE *file;
file = fopen ("myfile.txt","r");
if (file == NULL)
printf ("Error opening file myfile.txt: %s\n", strerror(errno));
return 0;
}