Initialization
This commit is contained in:
parent
67dad58059
commit
87f8055ada
@ -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);
|
size_t len = strlen(temp_name);
|
||||||
if (len > 0 && temp_name[len-1] == '\n') {
|
if (len > 0 && temp_name[len-1] == '\n') {
|
||||||
temp_name[len-1] = '\0'; // remove newline character
|
temp_name[len-1] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
int i, found = 0;
|
int i, found = 0;
|
||||||
@ -44,7 +43,7 @@ int main() {
|
|||||||
} else {
|
} else {
|
||||||
printf("Prijati studenti:\n");
|
printf("Prijati studenti:\n");
|
||||||
for (int i = 0; i < num_accepted; i++) {
|
for (int i = 0; i < num_accepted; i++) {
|
||||||
printf("%s\n", names[i]);
|
printf("%s", names[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user