Namespaces
Variants
Views
Actions

wcscat

From cppreference.com
< c‎ | string‎ | wide
Revision as of 04:36, 13 April 2012 by Eendy (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:c/string/wide/sidebar

Defined in header <wchar.h>
wchar_t *wcscat( wchar_t *dest, const wchar_t *src );

Appends a wide string pointed to by src to a wide string pointed to by dest. The resulting wide string is null-terminated. If the strings overlap, the behavior is undefined.

Contents

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

dest

Example

Template:example cpp

See also

Template:c/string/wide/dcl list wcsncatTemplate:c/string/wide/dcl list wcscpy