Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      perror

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

      Formatted input
       
      Defined in header<stdio.h>
      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:

      • the contents of the null-terminated byte string pointed to bys, followed by": " (unlesss is a null pointer or the character pointed to bys is the null character)
      • implementation-defined error message string describing the error code stored inerrno, followed by'\n'. The error message string is identical to the result ofstrerror(errno).

      Contents

      [edit]Parameters

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

      [edit]Return value

      (none)

      [edit]Example

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

      Possible output:

      fopen() failed: No such file or directory

      [edit]References

      • C11 standard (ISO/IEC 9899:2011):
      • 7.21.10.4 The perror function (p: 339)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.19.10.4 The perror function (p: 305)
      • C89/C90 standard (ISO/IEC 9899:1990):
      • 4.9.10.4 The perror function

      [edit]See also

      returns a text version of a given error code
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/io/perror&oldid=130368"

      [8]ページ先頭

      ©2009-2025 Movatter.jp