diff --git a/cv10/program.c b/cv10/program.c index 99f8116..947e942 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -15,9 +15,9 @@ int main() { return 1; } + memset(names, 0, sizeof(names)); + while (fgets(temp_name, sizeof(temp_name), stdin) != NULL && num_accepted < max_students) { - // Trim the newline character if present - temp_name[strcspn(temp_name, "\n")] = '\0'; int i, found = 0; @@ -38,20 +38,20 @@ 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\n", names[i]); + printf("%s", names[i]); } } - if (num_accepted < max_students && num_accepted < num_students) { - printf("Neprijati studenti:\n"); + if (num_accepted < num_students) { + printf("Neprijati studenti:"); for (int i = 0; i < max_students; i++) { if (names[i][0] == '\0') { - printf("%s\n", names[i]); + printf("%s", names[i]); } } } return 0; -} +} \ No newline at end of file