gpt4 book ai didi

c - 在结构体中使用 char

转载 作者:行者123 更新时间:2023-11-30 15:45:34 25 4
gpt4 key购买 nike

我需要编写一个 C 程序来表示包含学生数据(姓名、分数和学号)的列表,但我不知道如何正确存储学生姓名。

我尝试使用指针,但当我尝试分配新名称时,它会覆盖旧名称。

这是我正在使用的代码...有人可以帮助我吗?

lista.h

typedef struct _lista lista;
typedef struct _dados dados;

typedef struct _dados{
int matricula;
float media;
char *nome;
}_dados;

typedef struct _lista {
int fim;
dados *d[max];
}_lista;

lista* criar_lista();
dados* novo_dado(char *nome, int matricula, float media);
void imprimir(dados *dado);

lista.c

lista* criar_lista(){
lista* L = (lista *) malloc(sizeof (lista));
L->fim = -1;
return L;
}

dados* novo_dado(char *nome, int matricula, float media){

dados* d = (dados *) malloc(sizeof (dados));
d -> matricula = matricula;
d -> media = media;
d -> nome = nome;
return d;
}

void imprimir(dados *dado){
printf("%s: ", dado->nome);
printf("%d ", dado->matricula);
printf("%.2f\n", dado->media);
}

ma​​in.c

lista *L1;
char nome[15];
int matricula;
float media;

L1 = criar_lista();



for (i=0;i<n;i++){
fscanf(entrada,"%s", nome);
fscanf(entrada,"%d", &matricula);
fscanf(entrada,"%f", &media);
inserir(L1,novo_dado(nome,matricula,media));

}

输入:

8
Vandre 45 7.5
Joao 32 6.8
Mariana 4 9.5
Carla 7 3.5
Jose 15 8
Fernando 18 5.5
Marcos 22 9
Felicia 1 8.5

输出:

Felicia 45 7.5
Felicia 32 6.8
Felicia 4 9.5
Felicia 7 3.5
Felicia 15 8
Felicia 18 5.5
Felicia 22 9
Felicia 1 8.5 and so on...

最佳答案

改变

d -> nome = nome;

d -> nome = strdup(nome);

这将在堆上分配一个新的字符数组,将字符串复制到其中,并将d->nome设置为它的开头。因此,每个 dado 将在其自己的数组中拥有自己的 nome 字符串。

在销毁 dado 之前,不要忘记调用 free(d->nome);,否则会出现内存泄漏。

关于c - 在结构体中使用 char,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18949560/

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