GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::perror(3) C++ Standard Libary std::perror(3)

std::perror - 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 ":
" (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).


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


(none)

// Run this code


#include <cmath>
#include <cerrno>
#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);
}


log(-1) failed: Numerical argument out of domain
nan


errno macro which expands to POSIX-compatible thread-local error number variable
(macro variable)
strerror returns a text version of a given error code
(function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.