Initialization

This commit is contained in:
Kozar 2024-04-25 19:18:38 +02:00
parent bde6cd82c6
commit d8ba05a4bf

View File

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