#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
char* solution(const char* my_string, const char* overwrite_string, int s) {
int m = strlen(my_string);
int o = strlen(overwrite_string);
int j = 0;
char* answer = (char*)malloc(sizeof(char)*m);
answer = my_string;
for(int i=s; i < s+o; i++) {
answer[i] = overwrite_string[j];
j++;
}
answer[strlen(my_string)] = '\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 |