Initialization

This commit is contained in:
Kozar 2024-04-22 18:46:04 +02:00
parent c430a567d7
commit c84eed26e6

View File

@ -44,14 +44,14 @@ int main() {
}
}
if (num_accepted < num_students) {
printf("Neprijati studenti:");
for (int i = 0; i < max_students; i++) {
if (names[i][0] == '\0') {
printf("%s", names[i]);
}
}
}
// if (num_accepted < num_students) {
// printf("Neprijati studenti:");
// for (int i = 0; i < max_students; i++) {
// if (names[i][0] == '\0') {
// printf("%s", names[i]);
// }
// }
// }
return 0;
}