#include <stdio .h> #include <string .h> #include <stdlib .h> int main() {     char a[100],b[100],*c;     int i,j,k=0,l=0,lena,lenb,lenc;     printf("Please input the first word:\n");     gets(a);     printf("Please input the second word:\n");     gets(b);     lena=strlen(a);     lenb=strlen(b);     c=(char *)malloc((lena+lenb-1)*sizeof(char));              //向内存申请适合的空间     lenc=strlen(c); [...]