단어 s의 가운데 글자를 반환하는 함수, solution을 만들어 보세요. 단어의 길이가 짝수라면 가운데 두글자를 반환하면 됩니다.
s | return |
---|---|
"abcde" | "c" |
"qwer" | "we" |
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
char* solution(const char* s) {
char* answer = (char*)malloc(3);
int len = strlen(s);
if(len % 2 == 0) {
strncat(answer, s + (len / 2 - 1), 1);
strncat(answer, s + (len / 2), 1);
} else {
strncat(answer, s + (len / 2), 1);
}
return answer;
}