永发信息网

写一个函数将顺序串s1中的第i个字符到第j个字符之间的字符用s2串替换

答案:2  悬赏:50  手机版
解决时间 2021-04-05 22:11
  • 提问者网友:风月客
  • 2021-04-05 06:26
写一个函数将顺序串s1中的第i个字符到第j个字符之间的字符用s2串替换
最佳答案
  • 五星知识达人网友:有你哪都是故乡
  • 2021-04-05 07:55
#include "string.h"
#include "stdio.h"

int replace(char s1[], char s2[], int i, int j) {
int number_of_chars_to_replace = (j - i + 1) < strlen(s2) ? j - i + 1 : strlen(s2);
int l;
for (l=0; l < number_of_chars_to_replace; l++) {
s1[i+l] = s2[l];
}
return number_of_chars_to_replace;
}

int main() {
char s1[] = "Hello world";
char s2[] = "ABCDE";
replace(s1, s2, 1, 10);
printf("After replace : %s\n", s1);
return 0;
}
全部回答
  • 1楼网友:青尢
  • 2021-04-05 08:48
什么意思?s2的长度肯定是j-i+1么?
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯