下面的代码可能有什么问题,它永远不会打开文件。我也尝试过使用绝对文件路径,但这对我没有帮助,我知道文件在那里。
FILE *myfile;
myfile= fopen("IN.txt",r);
if (myfile != NULL)
{
while ( fscanf(myfile,"%lf",&test) !=eof )
{
printf("%f",test);
printf("\n");
}
}
fclose(myfile);