按如下函数原型编程实现字符串连接函数strcat()的功能。
void MyStrcat(char dstStr[], char srcStr[]);
输入提示信息:
“Input a string:”
“Input another string:”
输入字符串用gets()
输出提示信息和格式:“Concatenate results:%s\n”
#include<stdio.h>
void constring(char s[],char t[],char q[]);//函数声明
int main(void)
{
char s[100];
char q[100];
char t[200];
printf("输入字符串是s:\n");//提示输入字符串
gets(s); //输入字符串
printf("输入字符串q:\n");
gets(q);
constring(s, q, t);//调用函数
printf("连接后的字符串为:%s\n", t);
}
void constring(char s[],char t[], char q[])
{
int i, j;
for (i = 0; s[i] != '\0'; i++)
{
q[i] = s[i];
}
for (j = 0; t[j] != '\0'; j++)
{
q[i + j] = t[j];
}
q[i + j] = '\0';
}