Aktualizovat „du5/program.c“
This commit is contained in:
parent
470f1ab708
commit
c75c3c0b7d
@ -27,12 +27,12 @@ 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*));
|
||||||
char name[30];
|
char name[30];
|
||||||
int score=0;
|
int score=0;
|
||||||
int c =0;
|
int c =0;
|
||||||
while(scanf("%d %s",&score,name)!=EOF){
|
while(scanf("%d %s",&score,name)!=EOF){
|
||||||
addElement(PersonList,score,name);
|
addElement(&PersonList,score,name);
|
||||||
c++;
|
c++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user