Append a string.
LPSTR strcat( LPSTR lpString1, LPCSTR lpString2 )
If the function succeeds, the return value is a pointer to the buffer. If the function fails, the return value is NULL.
EX1
void strcat_ex1() { char szStr[80] = "This is the first part. "; string str1 = "This is the second part."; // Concatenate: strcat(szStr, str1); out_str(szStr); }
lstrcat
origin.h