User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:stdio.h:perror

perror

    void perror(const char *str);

Prints str (if non-null) and strerror(errno) to standard error as would:

fprintf(stderr, "%s: %s\n", (s != NULL ? s : ""), strerror(errno))

C Sourcecode Example

/* 
 * perror example code
 * http://code-reference.com/c/stdio.h/perror 
 */
 
#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
 
int main ( void )
{
FILE *stream;
 
stream = fopen("test_not_exists.txt","r");
 
if (stream == 0) {
perror("Here comes the perror code ->");
return 1;
}
 
printf("its all fine\n");
 
fclose (stream);
return 0;
 
}

output

 ./perror 
  Here comes the perror code ->: No such file or directory

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/stdio.h/perror.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz