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