From b3f28e801669bc5cad5fa26cf28a642ec853a727 Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 25 Apr 2024 17:59:26 +0200 Subject: [PATCH] Initialization --- cv10/program.c | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/cv10/program.c b/cv10/program.c index 7c0472a..01c0cf5 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -38,22 +38,24 @@ 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]); } - printf("\nNeprijati studenti:\n"); - for (int i = 0; i < num_students; i++) { - int found = 0; - for (int j = 0; j < num_accepted; j++) { - if (strcmp(names[j], temp_name) == 0) { - found = 1; - break; + if (num_students > num_accepted) { + printf("Neprijati studenti:"); + for (int i = 0; i < num_students; i++) { + int found = 0; + for (int j = 0; j < num_accepted; j++) { + if (strcmp(names[j], temp_name) == 0) { + found = 1; + break; + } + } + if (!found) { + printf("%s", temp_name); } - } - if (!found) { - printf("%s", temp_name); } } }