:
字符串拼接函数 char *strcat(char *destin, char *source);程序例:#include <string.h>
#include <stdio.h>void main()
{
char destination[25];
char *blank = " ", *c = "C++", *Borland = "Borland";
strcpy(destination, Borland);
strcat(destination, blank);
strcat(destination, c);
printf("%s\n", destination);
}本回答被提问者采纳