This commit is contained in:
Tančáková 2024-03-20 13:53:02 +01:00
parent a2bea1d86f
commit 2bd67532bf

View File

@ -60,7 +60,7 @@ int main() {
qsort(students, total_students, sizeof(Student), compare_students); qsort(students, total_students, sizeof(Student), compare_students);
// Print the outcome // Print the outcome
printf("Výsledky:\n"); printf("Outcome:\n");
for (int i = 0; i < total_students; i++) { for (int i = 0; i < total_students; i++) {
printf("%d %s\n", students[i].votes, students[i].name); printf("%d %s\n", students[i].votes, students[i].name);
} }
@ -68,73 +68,3 @@ int main() {
return 0; return 0;
} }