Aktualizovat „du5/program.c“

This commit is contained in:
Bohdan Yanchyk 2020-04-09 19:04:20 +00:00
parent bfac43403d
commit 2808543d85

View File

@ -11,8 +11,8 @@ struct person{
void addElement(struct person* PersonList,int score,char *name){
static int size = 1;
PersonList = realloc(PersonList,size*sizeof(struct person));
PersonList[size-1]->score = score;
PersonList[size-1]->name = name;
PersonList[size-1].score = score;
PersonList[size-1].name = name;
size++;
}
@ -28,7 +28,6 @@ int comp(const void *p1, const void *p2){
int main(){
struct person *PersonList=(struct person *)calloc(0,sizeof(struct person));
int count = 0;
char name[30];
int score=0;
int c =0;