Aktualizovat „du5/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-09 19:24:55 +00:00
parent 067c7a77ac
commit 96a7241751

View File

@ -8,7 +8,7 @@ struct person{
char name[30]; char name[30];
}; };
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;