C 库宏 extern int errno 是通过系统调用设置的,在错误事件中的某些库函数表明了什么发生了错误。
下面是 errno 宏的声明。
extern int errno
下面的实例演示了 errno 宏的用法。
#include <stdio.h> #include <errno.h> #include <string.h> extern int errno ; int main () { FILE *fp; fp = fopen("file.txt", "r"); if( fp == NULL ) { fprintf(stderr, "Value of errno: %d\n", errno); fprintf(stderr, "Error opening file: %s\n", strerror(errno)); } else { fclose(fp); } return(0); }
让我们编译并运行上面的程序,当文件 file.txt 不存在时,将产生以下结果:
Value of errno: 2 Error opening file: No such file or directory
在线实例
字符集 & 工具
最新更新
站点信息
关注我们