char *strcat( char *strDestination, const char *strSource );
Return Value
Each of these functions returns the destination string (strDestination). No return value is reserved to indicate an error.
Parameters
strDestination
Null-terminated destination string
strSource
Null-terminated source string
Remarks
The strcat function appends strSource to strDestination and terminates the resulting string with a null character. The initial character of strSource overwrites the terminating null character of strDestination. No overflow checking is performed when strings are copied or appended. The behavior of strcat is undefined if the source and destination strings overlap.