两个字符串连接-调用自定义函数 分数 10 作者 崔孝凤 单位 山东理工大学 两个字符串连接,在主函数中输入两个字符串,调用函数myscat完成两个字符串的连接,最后输出连接后的字符串,请在程序空白处填写合适的语句以
时间: 2023-12-26 12:05:58 浏览: 113
字符串基本操作-复制,连接,比较等
完成程序。
```c
#include <stdio.h>
#include <string.h>
void myscat(char dest[], char src[]) {
int len_dest = strlen(dest);
int i;
for (i = 0; src[i] != '\0'; i++) {
dest[len_dest + i] = src[i];
}
dest[len_dest + i] = '\0';
}
int main() {
char str1[100], str2[100];
scanf("%s %s", str1, str2);
myscat(str1, str2);
printf("%s", str1);
return 0;
}
```
阅读全文