gpt4 book ai didi

c - 将文件中的单词存储到 C 中的数组中

转载 作者:太空宇宙 更新时间:2023-11-04 05:18:54 24 4
gpt4 key购买 nike

char c; 
int i=0;
while( ( c = fgetc(file) ) != EOF )
{
fgets (array[i].word, 101, file);
printf(array[i].word);
i++;
}

变量 array 是一个 struct 类型并且那个 struct 有字段:char word[101] . file 是我们正在读取的文件。

文本文件包含:

Hey You
Look!

但我的程序输出显示:

ey You
ook!

有人知道为什么会这样吗?

最佳答案

Does anyone know why this is happening?

是的,您正在使用 fgetc 读取第一个字符。

使用 while(1)fgets 的返回码来确定您是否在输入文件的末尾。

关于c - 将文件中的单词存储到 C 中的数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21081730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com