c中文件问题
#include "stdio.h"#include "string.h"
#include "windows.h"
main()
{
FILE *fp;
char ch,filename[10]={"f:\1.txt"};
//scanf("%s",filename);
if((fp=fopen(filename,"w"))==NULL)
{
printf("cannot open the file\n");
exit(0);
}
ch=getchar();
ch=getchar();
while(ch!='#')
{
fputc(ch,fp);putchar(ch);
ch=getchar();
}
fclose(fp);
}
执行只执行 “cannot open文件”这一步,下面就不执行了。不知道什么原因。如果把filename用scanf输入数据比如“d:\1.txt"就行。把fopen后直接加”d:\1.txt“也不行。不知道怎么搞的。