为什么用fopen打不开文件?
#include<string.h>#include<stdio.h>
int main()
{
FILE *fp;
char ch;
if((fp=fopen("F:\aa.txt","w+"))==NULL)
{
printf("open the file error!\n");
return 0;
}
ch=getchar();
while(ch!='#')
{
fputc(ch,fp);
ch=fgetchar();
}
fclose(fp);
return 0;
}
程序的意思就是向文本文档中写入字符!!但是为什么总是打开文件失败?