为什么这个程序运行不起来?
下面这段代码编译没有错误,但是运行不起来,提示linker error: undefined symbol _fetc in module NONAME01.C不知道是怎么回事,希望指点一下!
对了,题目是将一个磁盘文件中的新媳妇知道另一个磁盘文件!
#include<stdio.h>
#include<stdlib.h>
void main()
{FILE *in,*out;
char ch,infile[10],outfile[10];
printf("Enter the infile name:\n");
scanf("%s",infile);
printf("Enter the outfile name:\n");
scanf("%s",outfile);
if((in=fopen(infile,"r"))==NULL)
{printf("cannot open infile\n");
exit(0);
}
if((out=fopen(outfile,"w"))==NULL)
{printf("cannot open outfile\n");
exit(0);
}
while(!feof(in)) fputc(fetc(in),out);
fclose(in);
fclose(out);
}
[此贴子已经被作者于2007-5-10 20:21:18编辑过]