This commit is contained in:
Jakub Frankovič 2026-02-21 14:24:33 +01:00
parent 94492f9dd0
commit 92a679b1b5
2 changed files with 1 additions and 1 deletions

BIN
a1/program Executable file

Binary file not shown.

View File

@ -13,7 +13,7 @@ int main() {
} else if (c == '\n') {
putchar(c);
lines++;
} else if (isprint(c)) {
} else if (c == '\t' || isprint(c)) {
putchar(c);
}
}