Initialization

This commit is contained in:
Kozar 2024-04-22 14:21:38 +02:00
parent 87f8055ada
commit 541b4c92fa

View File

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