用这个小程序怎么打不开文件呢?
#include<stdio.h>#include<stdlib.h>
int main()
{
FILE* pf;/*创建文件变量指针*/
pf=fopen ("test.txt","r");
/*打开文件test.txt以供读取*/
if (pf != NULL)
{
printf("OK文件打开\n");
fclose(pf);
}
else
printf("FILE文件打开失败\n");
system ("pause");
return 0;
}