From 61fef6bdebc95b4b2b0cfa18cfa32135322d03f6 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 19:14:41 +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 0aebb24..de71e14 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 < 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]); }