文件内容复制的问题
刚学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);
}