Namespaces
Variants
Actions

perror

From cppreference.com
< c‎ | io
 
 
File input/output
Types and objects
        
Functions
File access
(C95)
Unformatted input/output
(C95)(C95)
(C95)
(C95)(C95)
(C95)
(C95)

Formatted input
Direct input/output
Formatted output
File positioning
Error handling
perror
Operations on files
 
Defined in header <stdio.h>
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 strerror(errno).

Contents

[edit] Parameters

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

[edit] Return value

(none)

[edit] Example

#include <stdio.h>
 
int main(void)
{
    FILE *f = fopen("non_existent", "r");
    if (f == NULL) {
        perror("fopen() failed");
    } else {