在我的程序中,fprintf()
返回-1,表示错误。我怎样才能知道实际的错误是什么?
#include <errno.h>
#include <string.h>
...
rc = fprintf(...)
if (rc < 0)
printf("errno=%d, err_msg="%s"n", errno,strerror(errno))
需要查看"errno
"的值。大多数库函数将其设置为特定的错误代码,您可以在errno.h
中查找它,也可以使用perror
或strerror
来获得用户可读的版本。
#include <stdio.h>
#include <string.h>
#include <errno.h>
int main (void) {
FILE *fh = fopen ("junk", "w");
if (fh != NULL) {
if (fprintf (fh, "%s", "hello") < 0)
fprintf (stderr, "err=%d: %sn", errno, strerror (errno));
fclose (fh);
}
return 0;
}