唐伯虎 发表于 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的使用