strcat() String Function strcat() Concatenate strings #include <string.h> char *strcat(string1, string2) char *string1, *string2; strcat appends all characters in string2 onto the end of string1. It returns the modified string1. ***** Example ***** For an example of this function, see the entry for string functions. ***** See Also ***** string functions, string.h, strncat() ***** Notes ***** string1 must point to enough space to hold itself and string2; otherwise, another portion of the program may be overwritten. COHERENT Lexicon Page 1