From 2bd67532bf16267cfd72018ad16852029dc372c7 Mon Sep 17 00:00:00 2001 From: st529yr Date: Wed, 20 Mar 2024 13:53:02 +0100 Subject: [PATCH] funguje --- cv5/program.c | 72 +-------------------------------------------------- 1 file changed, 1 insertion(+), 71 deletions(-) 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; } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -