阅读量:0
在C语言中,可以使用strcat函数将两个字符串拼接在一起。例如:
#include #include int main() { char str1[20] = "Hello"; char str2[] = "World"; strcat(str1, str2); printf("Concatenated string: %sn", str1); return 0; }
运行上面的程序将输出:
Concatenated string: HelloWorld
注意,使用strcat函数时要确保第一个字符串的数组大小足够大,以容纳拼接后的新字符串。