I think the strcpy() and strcat() functions from the standard library will concatenate strings. For example:
1 2 3 4 5
char * name [81];
strcpy(name,"Archie");
strcat(name," ");
strcat(name,"Bolter");
printf("%s, he my friend.\n",name); //prints Archie Bolter, he my friend.