标题:下面的代码有什么问题啊?小白求助
取消只看楼主
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
结帖率:88.89%
已结贴  问题点数:10 回复次数:3 
下面的代码有什么问题啊?小白求助
#include<stdio.h>
#include<stdlib.h>
void main()
{
    FILE *in,*out;
    char ch,infile[10],outfile[10];
    printf("enter the name of the fileread:");
    scanf("%s",infile);
    printf("enter the name of the filewrite:");
    scanf("%s",outfile);
    if(in=fopen(infile,"r")==NULL)
    {
        printf("can not open the file!\n");
        exit(0);
    }
    if(out=fopen(outfile,"w")==NULL)
    {
        printf("can not open the file!\n");
        exit(0);
    }
    while(!feof(in))
    {
        ch=fgetc(in);
        fputc(ch,out);
        putchar(ch);
    }
    putchar(10);
    fclose(in);
    fclose(out);
}
搜索更多相关主题的帖子: include file 
2016-12-29 20:36
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
得分:0 
回复 2楼 wp231957
就是C语言关于读取文件的问题
2016-12-29 20:38
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
得分:0 
回复 4楼 wp231957
就是读取一个文件,然后读取它的内容并将内容写入另一个文件
2016-12-29 20:43
bb102
Rank: 1
等 级:新手上路
帖 子:83
专家分:3
注 册:2016-10-22
得分:0 
回复 6楼 倾听心跳
还是不对啊,我是用out和in这两个指针变量指文件里面的内容
2016-12-29 20:49



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-473112-1-1.html




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

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