| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 369 人关注过本帖
标题:我的程序有什么问题?
取消只看楼主 加入收藏
ritajz
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2008-10-22
收藏
 问题点数:0 回复次数:0 
我的程序有什么问题?
#include<stdio.h>
#include<stdlib.h>
#define SEEk_END 2
void main()
{
    FILE *file1,*file2;
    char ch,infile,outfile;
    int block[1024];
    int i,last,size;
    printf("Enter the infile name:\n");
    scanf("%s",infile);
    printf("Enter the outfile name:\n");
    scanf("%s",outfile);
    if((file1=fopen("infile","rb"))==NULL)
    {
        printf("can not open infile.\n");
        exit(1);
    }
    if((file2=fopen(outfile,"wb"))==NULL);
    {
        printf("can not open outfile\n");
        exit(1);
    }
        fseek(file1,-1L,SEEK_END);
        size=(ftell(file1)/1024);
        last=ftell(file1)-size*1024;
    for(i=0;i<size;i++)
    {   
        fread(&block,1024,1,file1);
        if(fwrite(&block,1024,1,file2);
    }
    for(i=0;i<last;i++)
    {
        fread(&block,1024,1,file1);
        fwrite(&block,1024,1,file2);
    }
       
        fclose(file1);
        fclose(file2);
    
}


要求是只能用fread fwrite

多谢各位了。
搜索更多相关主题的帖子: c语言 
2008-11-23 10:52
快速回复:我的程序有什么问题?
数据加载中...
 
   



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

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