Aktualizovat „du5/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-09 19:07:52 +00:00
parent 2808543d85
commit 5018797457

View File

@ -12,7 +12,7 @@ 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;
PersonList[size-1].name = name; strcpy(PersonList[size-1].name ,name);
size++; size++;
} }