From e24567e7ff91b3d2d462be0cbfbb724a78d18e39 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 21:15:42 +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 2ad8810..581dcf8 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -51,7 +51,7 @@ int main() { // Sort the applications alphabetically qsort(applications, accepted_count, sizeof(char *), compare_names); - printf("Prijati studenti:\n"); + printf("Prijati studenti:"); for (j = 0; j < count && j < accepted_count; j++) { printf("%s\n", applications[j]); }