当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 perror()用法及代码示例


此函数非常有用,因为它会在屏幕上打印错误消息。我们所要做的就是如果您遇到我们发现错误的情况;使用字符串参数调用此函数。

首先打印的字符串,一个冒号,一个空格,然后是错误消息。

例:

    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);
}

输出

stdio.h - perror()  in c language




相关用法


注:本文由纯净天空筛选整理自Abhishek Sharma大神的英文原创作品 perror() function of stdio.h in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。