Development C

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