-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththousand_separator.c
More file actions
67 lines (53 loc) · 1.07 KB
/
thousand_separator.c
File metadata and controls
67 lines (53 loc) · 1.07 KB
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* thousand_separator(const char *const num, char sep, size_t group);
int main(void) {
char *result = thousand_separator("321654987", ',', 3);
puts("------------------------");
puts(result);
puts("\nThe End ...");
return (EXIT_SUCCESS);
}
char* thousand_separator(const char *const num, char sep, size_t group) {
if (sep == '\0')
sep = ',';
if (group == 0)
group = 3;
const size_t zero = 0;
const size_t one = 1;
size_t j = zero;
size_t i = zero;
size_t counter = zero;
const size_t length = strlen(num);
const size_t mod = length % group;
const size_t size = length + (length / group) + one;
char *const ts = (char*) calloc(size, sizeof(char));
if (length < 4) {
strcpy(ts, num);
return (ts);
}
memset(ts, (int) zero, size);
while (i < mod) {
ts[j] = num[i];
i++;
j++;
}
if (mod > zero) {
ts[j] = sep;
j++;
}
while (i < length) {
if (counter < group) {
ts[j] = num[i];
i++;
j++;
counter++;
} else {
ts[j] = sep;
j++;
counter = zero;
}
}
return (ts);
}