Aktualizovat „du5/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-09 19:09:35 +00:00
parent 5018797457
commit e2afc9e411

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;
@ -55,6 +55,6 @@ int main(){
} }
} }
free(PersonList);
return 0; return 0;
} }