#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
char* solution(const char* str1, const char* str2) {
int s1 = strlen(str1);
char* answer = (char*)malloc((2*s1+1)*sizeof(char));
int j = 0;
for(int i=0; i < s1; i++)
{
answer[j++] = str1[i];
answer[j++] = str2[i];
}
answer[j] = '\0';
return answer;
}
'C언어 > 프로그래머스' 카테고리의 다른 글
[c언어] 두 수의 연산값 비교하기 (0) | 2023.08.28 |
---|---|
[c언어] 더 크게 합치기 (0) | 2023.08.28 |
[c언어] 문자열 곱하기 (0) | 2023.08.27 |
[c언어] 문자 리스트를 문자열로 변환하기 (1) | 2023.08.27 |
[c언어] 문자열 겹쳐쓰기 (0) | 2023.08.27 |