gpt4 book ai didi

c - typedef 指针使用 fgets 输入数据,但需要最后一个 fgets

转载 作者:太空宇宙 更新时间:2023-11-04 03:40:37 28 4
gpt4 key购买 nike

我正在尝试将文件中的邮政编码读入 Object * 数组。文件包括123 无处不在柯克兰加州99223

我的 .h 文件看起来像

 typedef struct
{
char *street;
char *city;
char *state;
int zip;
}Address;

我填充数组

Address * fillArray(int * total, FILE * fin)
{Address * array = NULL; int n =0; char line[256];int count=0;
while (fgets(line,256,fin)!=NULL)
{count++;}
count = count/4;
*total = count;//total of arrays
rewind(fin);//start of file
//printf("total : %d",*total);
array = (Address *)malloc(sizeof(Address*)*count);
for(n=0;n<count;n++)
{
array[n] = *((Address *) calloc(1,sizeof(Address)));
}
for(n=0;n<*total;n++)
{
fgets(line,sizeof(line),fin);
array[n].street=line;
printf("%s",array[n].street);
fgets(line,sizeof(line),fin);
array[n].city = line;
printf("%s",array[n].city);
fgets(line,sizeof(line),fin);
array[n].state = line;
fgets(line,sizeof(line),fin);
array[n].zip=atoi(line);
}



fclose(fin);
return array;

当它读取它时,当我尝试打印它时它最终看起来像这样

街道:99004 城市:99004 状态:99004 zip :99201

不知道出了什么问题任何帮助将不胜感激!谢谢

最佳答案

strdup 将分配一个适当大小的缓冲区并复制字符串,例如

array[n].street = strdup( line );

实际上,streetcitystate 都指向 line,每次都会被覆盖你调用 fgets

关于c - typedef 指针使用 fgets 输入数据,但需要最后一个 fgets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29001063/

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