C语言中可以使用strcpy和strcat函数来拼接字符串。
- 使用strcpy函数拼接字符串:
#include <stdio.h>
#include <string.h>
int main()
{
char str1[20] = "Hello, ";
char str2[] = "world!";
strcpy(str1 + 7, str2); // 将str2拼接到str1之后
printf("%s\n", str1); // 输出拼接后的字符串
return 0;
}
运行结果为:
Hello, world!
说明:在这个例子中,我们首先定义了两个字符数组:str1
和str2
。然后使用strcpy
函数将str2
拼接到str1
之后,最终输出拼接后的字符串str1
。
- 使用strcat函数拼接字符串:
#include <stdio.h>
#include <string.h>
int main()
{
char str1[20] = "Hello, ";
char str2[] = "world!";
strcat(str1, str2); // 将str2拼接到str1之后
printf("%s\n", str1); // 输出拼接后的字符串
return 0;
}
运行结果为:
Hello, world!
说明:在这个例子中,我们首先定义了两个字符数组:str1
和str2
。然后使用strcat
函数将str2
拼接到str1
之后,最终输出拼接后的字符串str1
。
注意:在使用strcat
函数拼接字符串时,需要确保目标字符数组大小足够大,否则可能会导致溢出错误。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:C语言拼接字符串 - Python技术站