| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 246 人关注过本帖
标题:打开文件出错
只看楼主 加入收藏
tredy6t
Rank: 2
等 级:论坛游民
帖 子:41
专家分:59
注 册:2015-8-6
结帖率:45.45%
收藏
已结贴  问题点数:10 回复次数:1 
打开文件出错
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
int main()
{
    FILE *fp;
    char words[81];
    long count,last;
    char ch;
    puts("Enter the name of file to be processed:");
    gets(words);
    //读取文件
    if((fp=fopen(words,"rb"))==NULL)//只读和二进制模式
        //if((fp=fopen("d:\vital","rb"))==NULL)
    {
        printf("I couldn't open the file \"%s\"\n",words);
        exit(1);
    }
    fseek(fp,0L,SEEK_END);//定位文件末尾
    last=ftell(fp);
    for(count=1L;count<=last;count++)
    {
        fseek(fp,-count,SEEK_END);//回退
        ch=getc(fp);
    }
    putchar('\n');
    fclose(fp);
    getch();
    return 0;
}
   
2015-11-23 16:13
hellovfp
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:禁止访问
威 望:30
帖 子:2976
专家分:7697
注 册:2009-7-21
收藏
得分:10 
第二个路径用双斜线,或是单反斜线

我们都在路上。。。。。
2015-11-24 00:20
快速回复:打开文件出错
数据加载中...
 
   



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

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