Aktualizovat „du5/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-09 19:14:53 +00:00
parent 470f1ab708
commit c75c3c0b7d

View File

@ -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++;
} }