gpt4 book ai didi

c - 如何检索文件中由空格分隔的单词并将这些单词分别存储在 C 中的指针数组中

转载 作者:行者123 更新时间:2023-11-30 21:30:00 24 4
gpt4 key购买 nike

//编程从文件中读取单词并将它们存储在指针数组中,然后访问它们

int main(){

    char *w;
int i,j;
w=(char*)malloc(sizeof (char));
FILE *f;
f = fopen("1.txt", "r");
char *word[max];

if(f == NULL)
{
printf("Cannot open file \n");
return 1;
}

i=0;
while(fscanf(f, "%s", w) != EOF)
{
printf("%s ",w);
word[i]=w;
i++;
}

for(j=0;j<i;j++)
{
printf("%s", word[j]);
}

返回0;

最佳答案

首先不要转换 malloc 的结果。

w=malloc(sizeof (char));// here you are allocating the one byte. 

将其更改为您必须存储的字节数。

w=malloc(1024);

在使用指针数组时,每个指针都必须为每个指针分配内存以指向不同的指针。

while(fscanf(f, "%s", w) != EOF && i < MAX)
{
printf("%s ",w);
word[i]=w;
w=malloc(1024); // It is for next index will point to another memory.
i++;
}

关于c - 如何检索文件中由空格分隔的单词并将这些单词分别存储在 C 中的指针数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28514125/

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