standard.C.string.strcat

strcat is available since version 1.0.

Prototype:

string strcat(string strDestination, string strSource)

Parameters

strDestination
Null-terminated destination string.
strSource
Null-terminated source string.

Description:

Append a string. 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. The behavior of strcat is undefined if the source and destination strings overlap.

Return value:

Returns the destination string (strDestination).