当前位置: 代码迷 >> C语言 >> c中文件问题
  详细解决方案

c中文件问题

热度:111   发布时间:2007-11-27 19:13:38.0
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“也不行。不知道怎么搞的。
搜索更多相关的解决方案: include  cannot  file  

----------------解决方案--------------------------------------------------------
d:\\1.txt
----------------解决方案--------------------------------------------------------
  相关解决方案