Initialization
This commit is contained in:
parent
2484f0f10d
commit
c430a567d7
@ -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,17 +38,17 @@ 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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user