| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 449 人关注过本帖
标题:C语言编程求助
取消只看楼主 加入收藏
李驹
Rank: 1
来 自:广东省
等 级:新手上路
帖 子:3
专家分:0
注 册:2012-9-29
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
C语言编程求助
#include<stdlib.h>
#include<stdio.h>
#include<math.h>
FILE * fptr;
main()
{  int i;
   char letter;
   fptr=fopen("D:\\my information.txt","w+");
   if(fptr==0)
   {printf("An error eccurred while opening the file!\n");
   exit(1);}
   for(letter='A';letter<='Z';letter++)
   {fputc(letter,fptr);}
   puts("Just wrote the letters A through Z");
   fseek(fptr,-1,SEEK_END);
   printf("Here is the file backward:\n");
   for(i=26;i>=1;i--)
   {letter=fgetc(fptr);
   fseek(fptr,-2,SEEK_CUR);
   printf("The next letter is%c\n",letter);}
   fclose(fptr);
   return 0;
}
这个程序的结果是书写26个大写字母到文件中,然后逆序输出。为什么倒数第五行fseek里面的数字是-2而不是-1?希望有人指导。
搜索更多相关主题的帖子: through letters include backward 编程 
2012-09-29 22:47
李驹
Rank: 1
来 自:广东省
等 级:新手上路
帖 子:3
专家分:0
注 册:2012-9-29
收藏
得分:0 
回复 2楼 pauljames
您的意思是fgetc()会使位置向后移动一位吗?

菜鸟
2012-09-30 11:05
快速回复:C语言编程求助
数据加载中...
 
   



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

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