perror - cppreference.com (original) (raw)

| | | | | ------------------------------ | | | | 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:

[edit] Parameters

s - pointer to a null-terminated string with explanatory message

[edit] Return value

(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

[edit] See also