#include <iostream>

int main()
{
    const wchar_t names[1][3] = { { '\x56', '\x45', '\x52' } };
 
    for (unsigned i = 0; i < 3; ++i)
        std::wcout << names[0][i] << '\n';    // names[1][2] is outside the bounds of the array.
}