Aktualizovat a1/program.c

This commit is contained in:
Tomáš Vlček 2026-02-20 23:21:39 +00:00
parent 31ceb19316
commit d61259392c

View File

@ -22,7 +22,7 @@ int main()
{ {
putchar(tolower(vstup)); putchar(tolower(vstup));
} }
else if (iscntrl(vstup) == 0) else if (!iscntrl(vstup))
{ {
putchar(vstup); putchar(vstup);
} }