【已结】putc()函数输出问题
#include<stdio.h>#include<stdlib.h>
#include<string.h>
#define LEN 100
int main(void)
{
FILE *in, *out;
int ch;
char name[LEN];
int count=0;
if((in=fopen("f:\\d.txt", "r"))==NULL)
{
fprintf(stderr, "I couldn't open the file \"me.txt\"\n");
exit(1);
}
strcpy(name, "dc");
strcat(name, ".txt");
if((out=fopen(name, "w+"))== NULL)
{
fprintf(stderr, "Can't creat output file.\n");
exit(2);
}
while((ch=getc(in)) !=EOF)
if(count ++ % 3==0)
putc(ch, out);
if(fclose(in) !=0 || fclose(out) !=0)
fprintf(stderr, "Error in closing files\n");
return 0;
}
是这样的:在F盘里面有一个d.txt的文本文件,内容是I am a medical student,然后这个程序是以每三个字符创建dc.txt并输出这段话也就是Im dasdt。运行现程序后的确创建了dc.txt文本文件,内容也是符合的,但是这个程序就是不能输出,所以我怀疑是putc()函数的问题,请大神指教。
[ 本帖最后由 lc5491137 于 2012-5-14 12:16 编辑 ]