我需要打开这个文件,但它没有打开,我不知道为什么:
#include<stdio.h>
void copy();
int main(void)
{
copy();
return 0;
}
void copy()
{
FILE *src = fopen("srcc.txt", "r+");
if(!src)
{
printf("It was not possible to open the file");
return;
}
}
它只是通过 if 条件并出现消息it was not possible to open the file
并且未创建文件。