From d48b60a0fbf17354a05a859e0781fb0db28146f7 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 18:01:55 +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 01c0cf5..c1db4fb 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:"); + printf("Prijati studenti:\n"); for (int i = 0; i < num_accepted; i++) { printf("%s", names[i]); } if (num_students > num_accepted) { - printf("Neprijati studenti:"); + printf("\nNeprijati studenti:\n"); for (int i = 0; i < num_students; i++) { int found = 0; for (int j = 0; j < num_accepted; j++) {