我的源代码如下:
#include <QtCore/QCoreApplication>
#include <stdio.h>
#include <errno.h>
using namespace std;
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
printf("salam\n");
int num = 10;
int ss;
ss = num / 0;
printf("%s\n",strerror(errno));
return a.exec();
}
我想显示我的error
字符串“除零”!但输出是:
salam
没有这样的文件或目录
请帮助我如何在c++中使用errno
and ?errorstring