From 745c70843a7b69bfc40474d53915a8db593ac6f0 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 19:05:49 +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 254b9d6..f22588c 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -50,13 +50,13 @@ int main() { // Sort the applications alphabetically qsort(applications, i, sizeof(char *), compare_names); - printf("Prijati studenti:\n"); + printf("Prijati studenti:"); for (j = 0; j < (count < i ? count : i); j++) { printf("%s\n", applications[j]); } if (count < i) { - printf("Neprijati studenti:\n"); + printf("Neprijati studenti:"); for (; j < i; j++) { printf("%s\n", applications[j]); }