std::perror
Defined in header <cstdio> | ||
---|---|---|
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:
- the contents of the null-terminated byte string pointed to by
s
, followed by": "
(unlesss
is a null pointer or the character pointed to bys
is the null character) - implementation-defined error message string describing the error code stored in
errno
, followed by'\n'
. The error message string is identical to the result ofstd::strerror(errno)
.
Parameters
s | - | pointer to a null-terminated string with explanatory message |
Return value
(none).
Example
#include <cmath> #include <cerrno> #include <cstdio> int main() { double not_a_number = std::log(-1.0); if (errno == EDOM) { std::perror("log(-1) failed"); } }
Output:
log(-1) failed: Numerical argument out of domain
See also
macro which expands to POSIX-compatible thread-local error number variable (macro variable) |
|
returns a text version of a given error code (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/io/c/perror