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