Initialization

This commit is contained in:
Kozar 2024-04-25 21:13:11 +02:00
parent 0f1648868d
commit bb0777b808

View File

@ -51,14 +51,15 @@ int main() {
// Sort the applications alphabetically // Sort the applications alphabetically
qsort(applications, accepted_count, sizeof(char *), compare_names); qsort(applications, accepted_count, sizeof(char *), compare_names);
printf("Prijati studenti:"); printf("Prijati studenti:\n");
for (j = 0; j < accepted_count; j++) { for (j = 0; j < count && j < accepted_count; j++) {
printf("%s\n", applications[j]); printf("%s\n", applications[j]);
} }
if (count < accepted_count) {
printf("Neprijati studenti:"); if (count > accepted_count) {
for (; j < i; j++) { printf("Neprijati studenti:\n");
for (j = accepted_count; j < i; j++) {
printf("%s\n", applications[j]); printf("%s\n", applications[j]);
} }
} }
@ -70,4 +71,4 @@ int main() {
free(applications); free(applications);
return 0; return 0;
} }