aboutsummaryrefslogtreecommitdiff
path: root/1.14.c
diff options
context:
space:
mode:
authorsinanmohd <pcmsinan@gmail.com>2022-06-04 12:11:15 +0530
committersinanmohd <pcmsinan@gmail.com>2022-06-04 12:11:15 +0530
commitc24973af02bc33f2f5f25d37e22ca91da5de3c47 (patch)
tree460a005b6a3a9a967bd881bc2bf01e0becbe33cc /1.14.c
inital commit
Diffstat (limited to '1.14.c')
-rw-r--r--1.14.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/1.14.c b/1.14.c
new file mode 100644
index 0000000..8274008
--- /dev/null
+++ b/1.14.c
@@ -0,0 +1,50 @@
+#include <stdio.h>
+
+#define MAX_CHAR 128 // ASCII set
+
+int t0;
+
+/* program to print a histogram of the frequencies of diffrent
+ * characters in its input */
+
+int t1;
+
+// this is a test1
+
+int t2;
+
+/* trrrrrr2 */
+
+int
+main(void)
+{
+ int i, j, input;
+ int char_count[MAX_CHAR];
+
+ for (i = 0; i < MAX_CHAR; i++)
+ char_count[i] = 0;
+
+ while((input = getchar()) != EOF) {
+ char_count[input]++;
+ }
+
+ printf("\n");
+
+ for (i =0; i < MAX_CHAR; i++) {
+ if (char_count[i] == 0)
+ continue;
+
+ if (i == '\t')
+ printf(" \\t -- %3d: ", char_count[i]);
+ else if (i == '\n')
+ printf(" \\n -- %3d: ", char_count[i]);
+ else if (i == ' ')
+ printf("' ' -- %3d: ", char_count[i]);
+ else
+ printf(" %c -- %3d: ", i, char_count[i]);
+
+ for (j = 0; j <= char_count[i]; j++)
+ printf("*");
+ printf("\n");
+ }
+}