Aktualizovat „du5/program.c“
This commit is contained in:
parent
5018797457
commit
e2afc9e411
@ -8,7 +8,7 @@ struct person{
|
||||
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;
|
||||
PersonList = realloc(PersonList,size*sizeof(struct person));
|
||||
PersonList[size-1].score = score;
|
||||
@ -55,6 +55,6 @@ int main(){
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
free(PersonList);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user