aboutsummaryrefslogtreecommitdiff
path: root/ch1/1-12_one-word-per-line.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ch1/1-12_one-word-per-line.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ch1/1-12_one-word-per-line.c b/ch1/1-12_one-word-per-line.c
index 29a38df..6e70878 100644
--- a/ch1/1-12_one-word-per-line.c
+++ b/ch1/1-12_one-word-per-line.c
@@ -15,7 +15,6 @@ int main(void) {
int c, nl, nw, nc, state;
state = OUT;
nl = nw = nc = 0;
-
while ((c = getchar()) != EOF) {
nc++;
if (c == '\n') {
@@ -34,8 +33,6 @@ int main(void) {
putchar(c);
}
}
-
printf("%d %d %d\n", nl, nw, nc);
-
return 0;
}