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

errno获取错误

时间:2017-07-20 22:32:15      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:errno strerror

#include <errno.h>

#include <stdlib.h>

#include <string.h>


errno = 0;

iconv_t cd = iconv_open("UTF-8", "GBK");

  char* errMsg = NULL;

  if (errno !=0)

  {

errMsg = strerror(errno);

cout<<errno<<endl;

  cout<<errMsg<<endl;

}


errno获取错误

标签:errno strerror

原文地址:http://fengyuzaitu.blog.51cto.com/5218690/1949487

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