This commit is contained in:
Kozar 2024-02-21 18:25:34 +01:00
parent 3573df2b7e
commit 55136fc05d

View File

@ -14,13 +14,12 @@ int main(){
else if (c == '\n') { else if (c == '\n') {
line_count++; // Zvýšte počítadlo riadkov na konce riadka line_count++; // Zvýšte počítadlo riadkov na konce riadka
} }
else if (c == '\t'){
//putchar(c);
continue;
}
else if (c < ' ' || c >= 127) { else if (c < ' ' || c >= 127) {
continue; // Preskočiť značky continue; // Preskočiť značky
} }
else if (c == '\t') {
putchar(c); // Print the tab character
}
putchar(c); // Vypíš znak putchar(c); // Vypíš znak
} }