|
strerrorfunction
<cstring> char * strerror ( int errnum ); Get pointer to error message string Interprets the value of errnum generating a string describing the error that usually generates that error number value in calls to functions of the C library.The returned pointer points to a statically allocated string, which shall not be modified by the program. Further calls to this function will overwrite its content. The error strings produced by strerror depend on the developing platform and compiler. Parameters
Return ValueA pointer to the error string describing error errnum.Example
A possible output:
See also
|