Get pointer to error message string: how to use strerror : error « Development « C / ANSI-C






Get pointer to error message string: how to use strerror


#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;
}

           
       








Related examples in the same category

1. Print error message: how to use perror
2.Reset error indicators: writing errors
3.Define Macro for string variable
4.Preprocessor: error
5.Preprocessor: line