| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 458 人关注过本帖
标题:文件内容复制的问题
取消只看楼主 加入收藏
yopey
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-7-19
收藏
 问题点数:0 回复次数:1 
文件内容复制的问题
刚学C,请指教:)
程序是把一个文件中的信息复制到另一个文件中,但是每次运行之后,复制的文件尾巴总多了个符号,那个符号就是打不出来。是y上面多了两点。不知道是系统问题还是程序的问题。程序如下

#include <stdio.h>
main()
{
FILE *in,*out;
char infile[10],outfile[10];
printf("Enter the infile name:");
scanf("%s",infile);
printf("Enter the outfile name:");
scanf("%s",outfile);
if ((in=fopen(infile,"r"))==NULL)
{
printf("cannot open the infile!\n");
exit(0);
}
if ((out=fopen(outfile,"w"))==NULL)
{
printf("cannot open the outfile!\n");
exit(0);
}
while (!feof(in))
fputc(fgetc(in),out);
fclose(in);
fclose(out);
}
搜索更多相关主题的帖子: 文件 
2006-07-19 22:40
yopey
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-7-19
收藏
得分:0 

明白,谢谢!

2006-07-20 15:15
快速回复:文件内容复制的问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015953 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved