| I/O manipulators | ||||
| Print functions(C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++20) | ||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
| Synchronized Output | ||||
(C++20) | ||||
| Types | ||||
| Error category interface | ||||
(C++11) | ||||
(C++11) |
| Types and objects | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Functions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Defined in header <cstdio> | ||
void perror(constchar*s); | ||
Prints a textual description of the error code currently stored in the system variableerrno tostderr.
The description is formed by concatenating the following components:
errno, followed by'\n'. The error message string is identical to the result ofstd::strerror(errno).Contents |
| s | - | pointer to a null-terminated string with explanatory message |
(none)
#include <cerrno>#include <cmath>#include <cstdio> int main(){double not_a_number=std::log(-1.0);if(errno==EDOM) std::perror("log(-1) failed");std::printf("%f\n", not_a_number);}
Possible output:
log(-1) failed: Numerical argument out of domainnan
| macro which expands to POSIX-compatible thread-local error number variable (macro variable)[edit] | |
| returns a text version of a given error code (function)[edit] | |
C documentation forperror | |