两个字符串的拼接可以使用strcat函数。strcat函数原型: char *strcat(char *s1,char *s2);需要引入头文件:#include功能:把s2所指字符串添加到s1结尾处并添加'\0'。注意:s1必须有足够的空间来容纳s1和s2的字符串。参考代码:#include "stdio.h"#include "string.h"int main() {char s1[200],...