From 68af96e75f09d275c451cdbe4afb15ef489380f8 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 20:04:23 +0200 Subject: [PATCH] Initialization --- cv10/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv10/program.c b/cv10/program.c index bb916f9..520a872 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -50,7 +50,7 @@ int main() { // Sort the applications alphabetically qsort(applications, i, sizeof(char *), compare_names); - printf("Prijati studenti:\n"); + printf("Prijati studenti:"); for (int j = 0; j < i; j++) { printf("%s\n", applications[j]); }