From 45ef9682bb1cfeaca0a280ab4affe462686a7594 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 20:45:36 +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 bc69d8c..ea0691b 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:"); + printf("Prijati studenti:\n"); for (j = 1; j < i; j++) { printf("%s\n", applications[j]); }