std::wcscat (3) - Linux Manuals
std::wcscat: std::wcscat
NAME
Synopsis
Defined in header <cwchar>
wchar_t *wcscat( wchar_t *dest, const wchar_t *src );
Appends a copy of the wide string pointed to by src to the end of the wide string pointed to by dest. The wide character src[0] replaces the null terminator at the end of dest. The resulting wide string is null-terminated.
The behavior is undefined if the destination array is not large enough for the contents of both str and dest and the terminating null wide character.
The behavior is undefined if the strings overlap.
Parameters
dest - pointer to the null-terminated wide string to append to
src - pointer to the null-terminated wide string to copy from
Return value
Returns a copy of dest
Example
// Run this code
Possible output:
See also
wcsncat (function)
strcat (function)
wcscpy (function)