From 52bd69853a71e50871c8ff703a45f48e07b79562 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 20:51:35 +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 69fd8eb..07d7d4d 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 (j = 0; j != i; j++) { printf("%s\n", applications[j]); }