From d55b76206f34a3b5b73b15c773656427a55b33cd Mon Sep 17 00:00:00 2001 From: ak643du Date: Wed, 21 Feb 2024 18:28:54 +0100 Subject: [PATCH] changes --- cv1/program.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cv1/program.c b/cv1/program.c index ce1c9cf..340d906 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -17,8 +17,8 @@ int main(){ else if (c < ' ' || c >= 127) { continue; // Preskočiť značky } - else if (c == '\t') { - putchar(c); // Print the tab character + if (c == '\t') { + putchar(c); } putchar(c); // Vypíš znak