在C语言中,字符串拼接有多种方法,以下是其中几种常用的方法:
char *strcat(char *dest, const char *src);
示例:
#include <stdio.h>
#include <string.h>
int main() {
char str1[50] = "Hello";
char str2[] = " World!";
strcat(str1, str2);
printf("%s\n", str1);
return 0;
}
输出结果为:Hello World!
int sprintf(char *str, const char *format, ...);
示例:
#include <stdio.h>
int main() {
char str[100];
char name[] = "Alice";
int age = 20;
sprintf(str, "My name is %s and I am %d years old.", name, age);
printf("%s\n", str);
return 0;
}
输出结果为:My name is Alice and I am 20 years old.
#include <stdio.h>
int main() {
char str1[50] = "Hello";
char str2[] = " World!";
int i = 0, j = 0;
while (str1[i] != '\0') {
i++;
}
while (str2[j] != '\0') {
str1[i] = str2[j];
i++;
j++;
}
str1[i] = '\0';
printf("%s\n", str1);
return 0;
}
输出结果为:Hello World!
这些方法可以根据实际需求选择适合的方法进行字符串拼接。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言如何更改运行窗口的背景