Aktualizovat „du5/program.c“
This commit is contained in:
parent
bfac43403d
commit
2808543d85
@ -11,8 +11,8 @@ struct person{
|
|||||||
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;
|
||||||
PersonList[size-1]->name = name;
|
PersonList[size-1].name = name;
|
||||||
size++;
|
size++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -28,7 +28,6 @@ int comp(const void *p1, const void *p2){
|
|||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
struct person *PersonList=(struct person *)calloc(0,sizeof(struct person));
|
struct person *PersonList=(struct person *)calloc(0,sizeof(struct person));
|
||||||
int count = 0;
|
|
||||||
char name[30];
|
char name[30];
|
||||||
int score=0;
|
int score=0;
|
||||||
int c =0;
|
int c =0;
|
||||||
|
Loading…
Reference in New Issue
Block a user