最近看别人的项目发现有 printf("%m") 这种写法,这是什么输出格式呢?
printf("%m")
通过 man 查找得知:
即它相当于 printf("%s",strerror(errno));
printf("%s",strerror(errno));