在struct中使用char

时间:2013-09-22 22:48:05

标签: c list static struct char

我需要制作一个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);
}

的main.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...

1 个答案:

答案 0 :(得分:1)

更改

d -> nome = nome;

d -> nome = strdup(nome);

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

在您销毁dado之前,请不要忘记拨打free(d->nome);,否则会发生内存泄漏。