#include <stdio.h>
#include <string.h>
#include <errno.h>
int main(int argc, char *argv[])
{
FILE *fd = fopen(argv[1], "r+");
if (fd == NULL)
{
perror("perror:");
printf("strerror:%s\n", strerror(errno));
}
else
{
fclose(fd);
}
return 0;
perror和strerror
最新推荐文章于 2023-05-18 11:36:43 发布