标题:困惑
取消只看楼主
cccer
Rank: 1
等 级:新手上路
帖 子:37
专家分:0
注 册:2004-5-5
 问题点数:0 回复次数:0 
困惑
#include <stdio.h> main(){ FILE *input,*output; char temp[20]; char words[20]; if((output=fopen("test.txt","w"))==NULL){ printf("open file error!please check\n"); exit(0); } printf("please input words:\n"); gets(temp); if(fputs(temp,output)==EOF){ printf("write error!please check\n"); } fclose(output);

if((input=fopen("test.txt","r"))==NULL){ printf("open file error!please have a chech\n"); exit(0); } if(fgets(words,strlen(temp-1),input)==EOF){ //问题就出在这一行 printf("read error!please check\n"); } printf("%s",words); getch(); } 当用temp+1(我觉得这才对),输出的words字符串就比我输入的字符串temp少一个字符 当用temp+2,输出的words字符串就比我输入的字符串temp少2个字符 只有当用temp-1,输出的words字符串才正确 这是为什么

搜索更多相关主题的帖子: output please printf input 
2004-05-11 20:12



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




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

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