From 77eea37bb6dca2517259412a464e39a61d8a1390 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 18:02:44 +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 c1db4fb..01c0cf5 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -38,13 +38,13 @@ int main() { if (num_accepted == 0) { printf("Ziadne prihlasky"); } else { - printf("Prijati studenti:\n"); + printf("Prijati studenti:"); for (int i = 0; i < num_accepted; i++) { printf("%s", names[i]); } if (num_students > num_accepted) { - printf("\nNeprijati studenti:\n"); + printf("Neprijati studenti:"); for (int i = 0; i < num_students; i++) { int found = 0; for (int j = 0; j < num_accepted; j++) {