用C++编写一个程序,将两个字符串连接起来,不要用stract函数
时间: 2024-05-20 12:18:00 浏览: 99
C语言 不使用strcat函数实现连接两个字符串功能代码
好的,这个问题我可以回答。以下是C语言代码:
#include <stdio.h>
#include <string.h>
void mystrcat(char* s1, char* s2) {
while(*s1) {
s1++;
}
while((*s1++ = *s2++));
}
int main() {
char str1[20] = "Hello";
char str2[20] = " World";
mystrcat(str1, str2);
printf("Concatenated string: %s", str1);
return 0;
}
这个程序使用自己编写的mystrcat函数将两个字符串连接起来,并打印出结果。
阅读全文