#include <string.h>
char *strerror( int num );
函数返回一个被定义的与某错误代码相关的错误信息。
#include <stdio.h> #include <errno.h> int main(void) { char *buffer; buffer = strerror(errno); printf("Error: %s\n", buffer); return 0; }
输出结果:
Error: No error