Initialization

This commit is contained in:
Kozar 2024-04-25 21:15:19 +02:00
parent c41cfff2f5
commit f7d3b9a17e

View File

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