❶ C语言编程:输入2个字符串,将其连接后输出.
思路:两个字符串的拼接可以使用strcat函数。
strcat函数原型: char *strcat(char *s1,char *s2);
需要引入头文件:#include <string.h>
功能:把s2所指字符串添加到s1结尾处并添加'