Initialization

This commit is contained in:
Kozar 2024-04-25 19:49:59 +02:00
parent 314ce71c49
commit c81050d011

View File

@ -56,10 +56,7 @@ int main() {
} }
if (count < i) { if (count < i) {
printf("Neprijati studenti:"); printf("Neprijati studenti:\n");
for (; j < i; j++) {
printf("%s\n", applications[j]);
}
} }
// Free allocated memory // Free allocated memory
@ -69,4 +66,4 @@ int main() {
free(applications); free(applications);
return 0; return 0;
} }