标题:关于fopen
取消只看楼主
liu0919
Rank: 2
等 级:论坛游民
帖 子:124
专家分:35
注 册:2013-5-13
结帖率:87.8%
已结贴  问题点数:15 回复次数:2 
关于fopen
程序代码:
#include<stdio.h>
#include<stdlib.h>
#define len 60
int main()
{
    char ch[len],ff;
    FILE*fp;
    int last,count;
    gets(ch);
    if((fp=fopen(ch,"rb"))==NULL)   //这个地方书上用的是数组 ch,但是一运行就打不开,可是我改为文件名就可以了;这是为什么
        {
            printf("Don't open the file\n");
            exit(1);
        }
    fseek(fp,0L,SEEK_END);
    last=ftell(fp);
    for(count=1L;count<=last;count++)
    {
        fseek(fp,-count,SEEK_END);
        ff=getc(fp);
        putchar(ff);
    }
    putchar('\n');
    fclose(fp);
    return 0;
}
搜索更多相关主题的帖子: count 
2014-01-08 09:06
liu0919
Rank: 2
等 级:论坛游民
帖 子:124
专家分:35
注 册:2013-5-13
得分:0 
回复 2楼 so_love
可是书上怎么就是用数组呢??
2014-01-08 09:44
liu0919
Rank: 2
等 级:论坛游民
帖 子:124
专家分:35
注 册:2013-5-13
得分:0 
回复 4楼 ljx小子
好像是耶,他好像是把文件名存在数组里面
2014-01-08 10:33



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




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

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