1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/fake_binary/solution.c

19 lines
333 B
C
Raw Normal View History

void fakeBin(const char *digits, char *buffer) {
char * digit = digits;
char * new_digit = buffer;
while (*digit != '\0') {
if (*digit >= '5') {
*new_digit = '1';
} else {
*new_digit = '0';
}
digit++;
new_digit++;
}
*new_digit = '\0';
printf("%s\n", digits);
printf("%s\n", buffer);
}