[求助]关于流文件的问题
#include <stdio.h>#include<stdlib.h>
#include<bios.h>
int main()
{
FILE *fp;
int a;
int ch;
if((fp=fopen("string","wb+"))==NULL)
{
printf("Can not be open file");
exit(1);
}
else printf("File will be opened to be writting:(1)or(2)\n\n");
scanf("%d",&a);
if(a==1)
{
printf("Enter a data:\n");
ch=getchar();
while(ch!='0')
{
fputc(ch,fp);
ch=getchar();
}
}
else
{
while(ch!=EOF)
{
ch=fgetc(fp);
putchar(ch);
}
}
fclose(fp);
return 0;
}
问题:我运行这个程序后并写入数据,但在TC的目录下找不到建立的文件,究竟是什么原因?