在C语言中,有多种方式可以实现字符串的拼接:
#include <stdio.h>
#include <string.h>
int main() {
char str1[50] = "Hello";
char str2[] = " World!";
strcat(str1, str2);
printf("%s\n", str1);
return 0;
}
#include <stdio.h>
int main() {
char str[50];
sprintf(str, "%s%s", "Hello", " World!");
printf("%s\n", str);
return 0;
}
#include <stdio.h>
int main() {
char str1[50] = "Hello";
char str2[] = " World!";
char *ptr = str1;
while (*ptr) {
ptr++;
}
while (*str2) {
*ptr = *str2;
ptr++;
str2++;
}
*ptr = '\0';
printf("%s\n", str1);
return 0;
}
注意:在使用指针操作时,需要保证目标字符数组有足够的空间来存储拼接后的字符串。