Aktualizovat „du5/program.c“
This commit is contained in:
parent
c75c3c0b7d
commit
42822617e6
@ -11,8 +11,8 @@ struct person{
|
|||||||
void addElement(struct person **PersonList,int score,char *name){
|
void addElement(struct person **PersonList,int score,char *name){
|
||||||
static int size = 1;
|
static int size = 1;
|
||||||
PersonList = realloc(PersonList,size*sizeof(struct person));
|
PersonList = realloc(PersonList,size*sizeof(struct person));
|
||||||
PersonList[size-1].score = score;
|
PersonList[size-1]->score = score;
|
||||||
strcpy(PersonList[size-1].name ,name);
|
strcpy(PersonList[size-1]->name ,name);
|
||||||
size++;
|
size++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user