strcat

Example: strcatString Manipulation Functions

Concatenates two strings.

char *strcat( char *to, const char *from );

toThe string at the end of which the from string is concatenated.
fromThe string concatenated to the end of the to string.

Return Values

Pointer to the concatenated string (null-terminated).