Изменил(а) на 'du5/program.c'

This commit is contained in:
Vladyslav Korzun 2023-03-17 14:22:19 +00:00
parent 7a7f79a00d
commit 13f5b54105

View File

@ -37,7 +37,7 @@ int compare_students(const void* a, const void* b) {
return -1;
}
else {
return 0;
return strcmp(student_a->name, student_b->name);
}
}