This commit is contained in:
Kozar 2024-02-21 18:28:54 +01:00
parent 55136fc05d
commit d55b76206f

View File

@ -17,8 +17,8 @@ int main(){
else if (c < ' ' || c >= 127) { else if (c < ' ' || c >= 127) {
continue; // Preskočiť značky continue; // Preskočiť značky
} }
else if (c == '\t') { if (c == '\t') {
putchar(c); // Print the tab character putchar(c);
} }
putchar(c); // Vypíš znak putchar(c); // Vypíš znak