void perror( const char *s );
Prints a textual description of the error code currently stored in the system variable errno to stderr.
The description is formed by concatenating the following components:
s
, followed by ": " (unless s
is a null pointer or the character pointed to by s
is the null character)errno
, followed by '\n'. The error message string is identical to the result of strerror(errno).(none)
[edit] Example#include <stdio.h> int main(void) { FILE *f = fopen("non_existent", "r"); if (f == NULL) { perror("fopen() failed"); } else { fclose(f); } }
Possible output:
fopen() failed: No such file or directory[edit] References
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4