How to print a user error message to stderr in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    FILE *fp;

    if ((fp = fopen("d:\\notexistingfile.txt", "r")) == NULL) 
    {
        perror("fopen: Could not open file for reading");
        return EXIT_FAILURE;
    }
    
    return EXIT_SUCCESS;
}

   
/*
run:
 
fopen: Could not open file for reading: No such file or directory

*/

 



answered Aug 31, 2017 by avibootz

Related questions

1 answer 248 views
1 answer 234 views
1 answer 239 views
1 answer 196 views
196 views asked Jun 25, 2018 by avibootz
2 answers 180 views
180 views asked May 4, 2021 by avibootz
...