阅读量:0
可以使用strcat函数将三个字符串连接在一起,示例如下:
#include <stdio.h> #include <string.h> int main() { char str1[50] = "Hello, "; char str2[] = "world"; char str3[] = "!"; strcat(str1, str2); strcat(str1, str3); printf("%s\n", str1); return 0; }
输出结果为:
Hello, world!