在C语言中,可以使用strcat函数来实现字符的拼接。strcat函数会将第二个字符串拼接到第一个字符串的末尾,并返回拼接后的字符串的起始地址。
以下是一个示例代码:
#include <stdio.h>#include <string.h>int main() { char str1[50] = "Hello, "; char str2[] = "World!"; strcat(str1, str2); printf("Concatenated string: %s\n", str1); return 0;}在上面的代码中,我们定义了两个字符数组str1和str2,然后使用strcat函数将str2拼接到str1的末尾,最终输出拼接后的字符串。


