diff --git a/du5/program.c b/du5/program.c index 4e08609..7a1f5ca 100644 --- a/du5/program.c +++ b/du5/program.c @@ -12,7 +12,7 @@ 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; + strcpy(PersonList[size-1].name ,name); size++; }