Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果系统调用函数失败,我们通常使用 perror 来输出错误信息。我想使用 fprintf 来输出 perror 字符串。我该怎么做这样的事情:
fprintf(stderr, perror output string here);
#include <errno.h> fprintf(stderr, "%s\n", strerror(errno));
注意:strerror 不适用于\n消息的结尾
\n