wchar_t* wmemset(wchar_t* wpDest,
wchar_t wChar,
size_t uiCount);#include <cwchar>
int main()
{
wchar_t waBuffer[] = L"XoaX.net";
wchar_t wX = L'X';
size_t uiCopySize = 5;
wprintf(L"%u \"%wc\" characters were copied to \"%ws\"\n",
uiCopySize, wX, waBuffer);
// Copy 5 Xs to the buffer
wmemset(waBuffer, wX, uiCopySize);
wprintf(L"The Result is = \"%ws\"\n", waBuffer);
// Keep the window open until "Enter" is pressed
getwchar();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.