#include // void perror(const char *msg);
#include // char *strerror(int errnum);
#include //errno
errno 是错误代码,在 errno.h头文件中;
perror是错误输出函数,输出格式为:msg:errno对应的错误信息(加上一个换行符);
strerror
以下是测试程序:
// p_str_error.c
// perror , strerror 函数 , errno 测试
#include
#include
#include
#include
int main(int argc, char *argv[])
{
}
open失败则会输出:
perror: No such file or directory
strerror: Cannot allocate memory
open成功则会输出:
perror: Success
strerror: Permission denied