This commit is contained in:
Kozar 2024-02-21 17:53:07 +01:00
parent c104dd62dd
commit 19257ee4a1

View File

@ -14,7 +14,7 @@ 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 > 31 && c <= 127) { else if (c < ' ' || c > '~') {
continue; // Preskočiť značky continue; // Preskočiť značky
} }
putchar(c); // Vypíš znak putchar(c); // Vypíš znak