From c41cfff2f5eded986857e5c368840f132d711d3e Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 21:13:54 +0200 Subject: [PATCH] Initialization --- cv10/program.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cv10/program.c b/cv10/program.c index e7b1e9e..abf0555 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -51,14 +51,14 @@ int main() { // Sort the applications alphabetically qsort(applications, accepted_count, sizeof(char *), compare_names); - printf("Prijati studenti:\n"); + printf("Prijati studenti:"); for (j = 0; j < count && j < accepted_count; j++) { printf("%s\n", applications[j]); } if (count > accepted_count) { - printf("Neprijati studenti:\n"); + printf("Neprijati studenti:"); for (j = accepted_count; j < i; j++) { printf("%s\n", applications[j]); }