首页上一页 1 下一页尾页 1 条记录 1/1页
fputc函数不能用啊
发表在C语言图书答疑
2016-07-11
是否精华
是
否
版块置顶:
是
否
我完全按照书上的来写的啊。。。
#include<stdio.h>
#include<windows.h>
main()
{
FILE *fp;
char ch;
fp=fopen("D:\cs.txt","w");
if(fp==NULL)
{
printf("文件打开失败!");
exit(0);
}
ch=getchar();
while(ch!='#')
{
fputc(ch,fp);
ch=getchar();
}
fclose(fp);
exit(0);
}
打开cs.txt,里面啥都没有。。。
#include<stdio.h>
#include<windows.h>
main()
{
FILE *fp;
char ch;
fp=fopen("D:\cs.txt","w");
if(fp==NULL)
{
printf("文件打开失败!");
exit(0);
}
ch=getchar();
while(ch!='#')
{
fputc(ch,fp);
ch=getchar();
}
fclose(fp);
exit(0);
}
打开cs.txt,里面啥都没有。。。