std::perror
From cppreference.com
C++
Feature test macros (C++20)
Concepts library (C++20)
Metaprogramming library (C++11)
Ranges library (C++20)
Filesystem library (C++17)
Concurrency support library (C++11)
Execution control library (C++26)
Input/output library
Print functions (C++23)
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)
C-style I/O
Types and objects
Functions
File access
Direct input/output
Unformatted input/output
Formatted input
(C++11)(C++11)(C++11)
(C++11)(C++11)(C++11)
Formatted output
(C++11)
(C++11)
File positioning
Error handling
perror
Operations on files
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 ": " (unless s is a null pointer or the character pointed to by s 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 of std::strerror (errno).
Contents
[edit] Parameters
s
-
pointer to a null-terminated string with explanatory message
[edit] Return value
(none)
[edit] Example
Run this code
#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 domain nan
[edit] See also
C documentation for perror