summaryrefslogtreecommitdiff
path: root/ch01/ex08-count.c
diff options
context:
space:
mode:
Diffstat (limited to 'ch01/ex08-count.c')
-rw-r--r--ch01/ex08-count.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/ch01/ex08-count.c b/ch01/ex08-count.c
new file mode 100644
index 0000000..c5052e6
--- /dev/null
+++ b/ch01/ex08-count.c
@@ -0,0 +1,22 @@
+#include <stdio.h>
+
+/* count blanks, tabs, and newlines in input */
+int main()
+{
+ int c;
+ int ns, nt, nl;
+
+ ns = 0;
+ nt = 0;
+ nl = 0;
+
+ while ((c=getchar()) != EOF) {
+ if (c == ' ')
+ ++ns;
+ if (c == '\t')
+ ++nt;
+ if (c == '\n')
+ ++nl;
+ }
+ printf("%d %d %d\n", ns, nt, nl);
+}