Initialization

This commit is contained in:
Kozar 2024-04-22 14:16:34 +02:00
parent 25fd4de705
commit 67dad58059

View File

@ -15,10 +15,13 @@ int main() {
return 1;
}
// Initialize the names array to all-zero strings
memset(names, 0, sizeof(names));
while (fgets(temp_name, sizeof(temp_name), stdin) != NULL && num_accepted < max_students) {
size_t len = strlen(temp_name);
if (len > 0 && temp_name[len-1] == '\n') {
temp_name[len-1] = '\0';
temp_name[len-1] = '\0'; // remove newline character
}
int i, found = 0;
@ -41,16 +44,14 @@ int main() {
} else {
printf("Prijati studenti:\n");
for (int i = 0; i < num_accepted; i++) {
printf("%s", names[i]);
printf("\n");
printf("%s\n", names[i]);
}
}
if (num_accepted < max_students) {
printf("Neprijati studenti:\n");
for (int i = num_accepted; i < max_students; i++) {
printf("%s", names[i]);
printf("\n");
printf("%s\n", names[i]);
}
}