码迷,mamicode.com
首页 > 其他好文 > 详细

转:perror和strerror的区别

时间:2016-08-30 10:48:36      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

概述:

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

测试代码如下:

 

[cpp] view plain copy
 
 print?
  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://www.cnblogs.com/yfz0/p/5820974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!