aboutsummaryrefslogtreecommitdiff
path: root/5.6.5.c
diff options
context:
space:
mode:
authorsinanmohd <pcmsinan@gmail.com>2022-06-18 16:13:44 +0530
committersinanmohd <pcmsinan@gmail.com>2022-06-18 16:13:44 +0530
commitff4846af7dea497d75af09acfa6c2c8ca48fd67e (patch)
tree974ad1b5f260c398405c04578b90155480250aa5 /5.6.5.c
parentc55c5080200f0f31ce05485af7cce4cf4204ac40 (diff)
5.6
Diffstat (limited to '5.6.5.c')
-rw-r--r--5.6.5.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/5.6.5.c b/5.6.5.c
new file mode 100644
index 0000000..d04da1e
--- /dev/null
+++ b/5.6.5.c
@@ -0,0 +1,47 @@
+#include <stdio.h>
+#include <ctype.h>
+
+#define MAXLEN 1000
+
+int atoi(char str[]);
+int sneed_getline(char str[], int max);
+
+int
+main(void)
+{
+ char str[MAXLEN];
+ while (sneed_getline(str, MAXLEN)) {
+ printf("string ver : %s", str);
+ printf("int ver : %d\n", atoi(str));
+ }
+ return 0;
+}
+
+int
+atoi(char str[])
+{
+ int val;
+
+ for (val = 0; isdigit(*str) && *str; str++)
+ val = val * 10 + *str -'0';
+
+ return val;
+}
+
+int
+sneed_getline(char str[], int max)
+{
+ char input;
+ char *str_og = str;
+
+ while (--max && (*str = input = getchar()) != EOF && input != '\n')
+ str++;
+
+ if (!max && input != '\n')
+ *str = '\n', str++;
+
+ str = '\0';
+
+ return str - str_og -1;
+}
+