add small scream fix

This commit is contained in:
randomuser 2022-06-24 17:15:39 -05:00
parent 873f62cfd1
commit 0458d16a18
1 changed files with 1 additions and 2 deletions

View File

@ -13,8 +13,7 @@ char newchar(char c, int i) {
}
int main(void) {
char c;
int i;
i = 0;
int i = 0;
while((c = getchar()) != EOF) {
putchar(newchar(c, i));
i++;