wchar_t* wcsncpy(wchar_t* wpDest,
const wchar_t* kwpSource,
size_t uiCopySize);#include <cwchar>
int main()
{
wchar_t waString1[] = L"Video Tutorials";
wchar_t waString2[] = L"XoaX.net";
size_t uiCopySize = 5;
wprintf(L"%u characters of \"%ws\" were copied to \"%ws\"\n",
uiCopySize, waString2, waString1);
// Copy the first 5 characters
wcsncpy(waString1, waString2, uiCopySize);
wprintf(L"The Result is = %ws\n", waString1);
// Keep the window open until "Enter" is pressed
getwchar();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.