65,210
社区成员
发帖
与我相关
我的任务
分享
# include <stdio.h>
# include <string.h>
// # include <errno.h> // for sys_errlist
int main()
{
// printf("%s\n", sys_errlist[2]); // deprecated
printf("%s\n", strerror(2));
return 0;
}