wchar_t* wcscpy(wchar_t* wpDestString, const wchar_t* kwpSrcString);
#include <cwchar>
int main()
{
wchar_t waSource[] = L"XoaX.net";
wchar_t waDestination[20];
// Copy the source string to the destination
wcscpy(waDestination, waSource);
wprintf(L"Destination now holds %ws\n", waDestination);
// Keep the window open until "Enter" is pressed
getwchar();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.