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