From 6cc6195f5d4f743d920e54c3dcb5f4c4923d80a2 Mon Sep 17 00:00:00 2001 From: Weber Date: Wed, 24 Apr 2024 10:08:32 +0000 Subject: [PATCH] test --- cv10/program.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cv10/program.c b/cv10/program.c index 86a22b4..8cbdbb2 100644 --- a/cv10/program.c +++ b/cv10/program.c @@ -47,13 +47,13 @@ int main() { qsort(names, numStudents, sizeof(names[0]), strcmp); - printf("\nPrijati studenti:\n"); + printf("Prijati studenti:\n"); for (int i = 0; i < maxStudents && i < numStudents; i++) { printf("%s\n", names[i]); } if (numStudents > maxStudents) { - printf("\nNeprijati studenti:\n"); + printf("Neprijati studenti:\n"); for (int i = maxStudents; i < numStudents; i++) { printf("%s\n", names[i]); }