aboutsummaryrefslogtreecommitdiff
path: root/1.18.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.18.c
inital commit
Diffstat (limited to '1.18.c')
-rw-r--r--1.18.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/1.18.c b/1.18.c
new file mode 100644
index 0000000..36f5ad9
--- /dev/null
+++ b/1.18.c
@@ -0,0 +1,35 @@
+#include <stdio.h>
+
+#define MAXLINE 1000
+
+int
+main(void)
+{
+ int input, i, non_blank;
+ char str[MAXLINE];
+
+ i = 0;
+ non_blank = -1;
+
+ while ((input = getchar()) != EOF) {
+ while (input != '\n' && input != EOF) {
+ str[i] = input;
+
+ if (input != ' ' && input != '\t')
+ non_blank = i;
+
+ ++i;
+ input = getchar();
+ }
+
+ if (non_blank == -1)
+ continue;
+
+ str[non_blank+1] = '\0';
+ printf("%s\n", str);
+
+ i = 0;
+ }
+
+ return 0;
+}