此函数非常有用,因为它会在屏幕上打印错误消息。我们所要做的就是如果您遇到我们发现错误的情况;使用字符串参数调用此函数。
首先打印的字符串,一个冒号,一个空格,然后是错误消息。
例:
perror("here is the error"); will print â here is the error:ERROR MESSAGE.
stdio.h - C 中的 perror() 函数示例
#include <stdio.h>
int main()
{
// defining the file pointer
FILE* f;
// rename file name
rename("abc.txt", "abcd.txt");
// open file
f = fopen("file.txt", "r");
// condition if error then print error
if (f == NULL) {
perror("Error in Code is:");
return (-1);
}
// close the file
fclose(f);
return (0);
}
输出
相关用法
- C语言 putchar()用法及代码示例
- C语言 putpixel()用法及代码示例
- C语言 pthread_cancel()用法及代码示例
- C语言 pthread_equal()用法及代码示例
- C语言 printf() and scanf()用法及代码示例
- C语言 pthread_self()用法及代码示例
- C语言 putc()用法及代码示例
- C语言 puts()用法及代码示例
- C语言 printf()用法及代码示例
- C语言 pieslice()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 getarcoords()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 sprintf()用法及代码示例
- C语言 outtextxy()用法及代码示例
- C语言 isgraph()用法及代码示例
注:本文由纯净天空筛选整理自Abhishek Sharma大神的英文原创作品 perror() function of stdio.h in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。