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