Defined in header <wchar.h> (1) wchar_t *wcscpy( wchar_t *dest, const wchar_t *src ); (since C95) (until C99) wchar_t *wcscpy( wchar_t *restrict dest, const wchar_t *restrict src ); (since C99) errno_t wcscpy_s( wchar_t *restrict dest, rsize_t destsz,
const wchar_t *restrict src ); (2) (since C11)
1) Copies the wide string pointed to by src (including the terminating null wide character) to wide character array pointed to by dest. The behavior