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 251 views
1 answer 242 views
1 answer 244 views
1 answer 200 views
200 views asked Jun 25, 2018 by avibootz
2 answers 183 views
183 views asked May 4, 2021 by avibootz
...