#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;
}
本文共 262 字,大约阅读时间需要 1 分钟。
#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;
}
转载于:https://blog.51cto.com/fengyuzaitu/1949487