CodeAE代码之家-专为程序员打造的技术家园!-网站地图
广场
›
编程语言
› C中error的使用
唐伯虎
发表于 2021-8-6 17:46:05
C中error的使用
有的时候,错误莫名其妙的.可以使用这个方法查找:
# include <errno.h>
extern int errno;
int test()
{
printf("%d, %s", errno, strerror(errno));
}
文档来源:51CTO技术博客https://blog.51cto.com/u_13161667/3301116
页:
[1]
查看完整版本:
C中error的使用