Mega Code Archive

 
Categories / C / Development
 

Get pointer to error message string

#include <stdio.h> #include <string.h> #include <errno.h> int main () {   FILE *file;   file = fopen ("my.txt","r");      if (file == NULL)     printf ("Error opening file my.txt: %s\n", strerror(errno));      return 0; }