Initialization

This commit is contained in:
Kozar 2024-04-25 20:45:36 +02:00
parent 004c383792
commit 45ef9682bb

View File

@ -50,7 +50,7 @@ int main() {
// Sort the applications alphabetically // Sort the applications alphabetically
qsort(applications, i, sizeof(char *), compare_names); qsort(applications, i, sizeof(char *), compare_names);
printf("Prijati studenti:"); printf("Prijati studenti:\n");
for (j = 1; j < i; j++) { for (j = 1; j < i; j++) {
printf("%s\n", applications[j]); printf("%s\n", applications[j]);
} }