perror和strerror的区别 http://blog.csdn.net/lalor/article/details/7555019

 

perror和strerror的区别

分类: Unix系统编程   4680人阅读  评论(0)  收藏  举报
null 语言 file 测试 fp c

概述:

perror和strerror都是C语言提供的库函数,用于获取与erno相关的错误信息,区别不大,用法也简单。最大的区别在于perror向stderr输出结果,而 strerror向stdout输出结果。

测试代码如下:

  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <errno.h>  
  4.   
  5. int main(int argc, char* argv[])  
  6. {  
  7.     FILE *fp;  
  8.     if ((fp = fopen(argv[1], "r")) == NULL)  
  9.     {  
  10.         perror("perror:");  
  11.         printf("strerror:%s\n", strerror(errno));  
  12.     }  
  13.     exit(0);  
  14. }  


运行结果:

perror和strerror的区别 http://blog.csdn.net/lalor/article/details/7555019_第1张图片

版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(Unix系统编程)