-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
71 lines (55 loc) · 1.49 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Function Declaration
char *readline();
// Visit https://stackoverflow.com/questions/1088622/how-do-i-create-an-array-of-strings-in-c
const char *strings[9] = {"one", "two", "three", "four", "five",
"six", "seven", "eight", "nine"};
// const char strings[9][5] = {"one", "two", "three", "four", "five",
// "six", "seven", "eight", "nine"};
int main() {
char *n_endptr;
char *n_str = readline();
int n = strtol(n_str, &n_endptr, 10);
if (n_endptr == n_str || *n_endptr != '\0') {
exit(EXIT_FAILURE);
}
// Write Your Code Here
if (n <= 9) {
printf("%s\n", strings[n - 1]);
} else {
printf("%s\n", "Greater than 9");
}
return EXIT_SUCCESS;
}
// Function Definition
char *readline() {
size_t alloc_length = 1024;
size_t data_length = 0;
char *data = malloc(alloc_length);
while (true) {
char *cursor = data + data_length;
char *line = fgets(cursor, alloc_length - data_length, stdin);
if (!line) {
break;
}
data_length += strlen(cursor);
if (data_length < alloc_length - 1 || data[data_length - 1] == '\n') {
break;
}
size_t new_length = alloc_length << 1;
data = realloc(data, new_length);
if (!data) {
break;
}
alloc_length = new_length;
}
if (data[data_length - 1] == '\n') {
data[data_length - 1] = '\0';
}
data = realloc(data, data_length);
return data;
}