不用strcat 函数,自己编写一个字符串链接函数MyStrcat(char dstStr[],charsrcStr[])
输入描述:
两个字符串,字符串由小写字母组成。


输出描述:
链接后的字符串
示例1

输入

hello world
good morning

输出

helloworld
goodmorning
加载中...