C Standard Libraries C++

wmemcpy()

Declaration

wchar_t* wmemcpy(wchar_t* wpDest,
                 const wchar_t* kwpSource,
                 size_t uiCopySize);

Description

This function copies the first "uiCopySize" wide-characters of "kwpSource" to the beginning of the string "wpDest." The function returns a pointer to "wpDest."

Example

#include <cwchar>

int main()
{
    wchar_t waBuffer1[] = L"Video Tutorials";
    wchar_t waBuffer2[] = L"XoaX.net";
    size_t uiCopySize = 5;

    wprintf(L"%u characters of \"%ws\" were copied to \"%ws\"\n",
        uiCopySize, waBuffer1, waBuffer2);
    // Copy the first 5 characters
    wmemcpy(waBuffer1, waBuffer2, uiCopySize);
    wprintf(L"The Result is = %ws\n", waBuffer1);

    // Keep the window open until "Enter" is pressed
    getwchar();
    return 0;
}

Output

wmemcpy() Output
 

© 2007–2024 XoaX.net LLC. All rights reserved.