diff --git a/cv10/program.c b/cv10/program.c index a434004..0aebb24 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -50,15 +50,16 @@ int main() { // Sort the applications alphabetically qsort(applications, i, sizeof(char *), compare_names); - printf("Prijati studenti:"); - j = 0; - while (j < i) { + printf("Prijati studenti:\n"); + for (j = 0; j < i; j++) { printf("%s\n", applications[j]); - j++; } if (count < i) { printf("Neprijati studenti:\n"); + for (; j < i; j++) { + printf("%s\n", applications[j]); + } } // Free allocated memory @@ -68,4 +69,4 @@ int main() { free(applications); return 0; -} \ No newline at end of file +}