From 340c45a6cab1bea85d6cf6edb06f2b754b870a8f Mon Sep 17 00:00:00 2001 From: Artem Horbunov Date: Wed, 8 Apr 2020 16:26:28 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Edu6/program.c=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- du6/program.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/du6/program.c b/du6/program.c index 36acd29..5e2c3b6 100644 --- a/du6/program.c +++ b/du6/program.c @@ -79,7 +79,7 @@ int main(){ //Print names if(newLines <= lines){ - puts("Prijati studenti:\n"); + puts("Prijati studenti:"); for(int i = 0; i < newLines; i++){ printf("%s\n", newNames[i]); } @@ -92,7 +92,7 @@ int main(){ for(int i = 0; i <= lines; i++){ printf("%s\n", newNames[i]); } - puts("Neprijati studenti:\n"); + puts("Neprijati studenti:"); for(int i = lines + 1; i < newLines; i++){ printf("%s\n", newNames[i]); }