我用c的fopen函数,但是打不开文件
用的c-free软件#include <stdio.h>
main ()
{ char str[80],str1[80];
FILE *fp;
if (
(fp=fopen("t.txt","r"))==NULL
);
{
printf("Connot open file!\n");
}
fclose(fp);
}
还有一种情况是(fp=fopen("D:\\My Documents\\C-Free\\Projects\\t.txt","r"))==NULL
这俩种情况都打不开这个文件。我保证文件就 在和工程一个文件夹里。
就算不在第二个情况已经指定路径了为什么还是不可以啊
求解答