出于某种原因,当我在以下代码中打印短语时,我发现 fgets 函数没有获取文本文件中的最后一个字符。我已经检查了 mone1 并看到它为文件中的文本提供了足够的空间。有人对此事件有解释和解决方案吗?
Tnx,院长。
ps 我很确定字符串的长度不是问题,因为即使我将其更改为 2 个字符,它仍然只打印第一个字符(不打印最后一个字符),而且都写在同一行.
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
printf("ss");
FILE * sent=NULL;
FILE * voca=NULL;
sent=fopen(argv[1],"r");
voca=fopen(argv[2],"r");
if(voca==NULL){
printf("cannot open voca ");
fclose(voca);
}
if(sent==NULL){
printf("cannot open sent");
fclose(sent);
}
int mone1=0;
int mone2=0;
while(EOF!=fgetc(sent))
mone1++;
while(EOF!=fgetc(voca))
mone2++;
fseek(sent,0L,SEEK_SET);
fseek(voca,0L,SEEK_SET);
char* phrase=(char*)(malloc(mone1*sizeof(char)));
char* voc=(char*)(malloc(mone2*sizeof(char)));
fgets(phrase,mone1,sent);
fgets(voc,mone2,voca);
printf("%s",phrase);
return 0;
}