wchar_t* wcscat(wchar_t* wpDest, const wchar_t* kwpSrc);
#include <cwchar>
int main()
{
wchar_t waWideString1[30] = L"XoaX.net ";
wchar_t waWideString2[] = L"Video Tutorials";
// Concatenate the strings into String 1
wcscat(waWideString1, waWideString2);
wprintf(L"Concatenation = %ws\n", waWideString1);
// Keep the window open until "Enter" is pressed
getwchar();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.