wchar_t* wcscat (wchar_t* destination, const wchar_t* source);
12345678910111213
/* wcscat example */ #include <wchar.h> int main () { wchar_t wcs[80]; wcscpy (wcs,L"these "); wcscat (wcs,L"wide strings "); wcscat (wcs,L"are "); wcscat (wcs,L"concatenated."); wprintf (L"%ls\n",wcs); return 0; }
these wide strings are concatenated.