I'm trying to do a 2d wchar_t array initialization using that code:
const wchar_t* e[6][]={
{ L"ç", L"$^^" },
{ L"ç"},
{ L"ç", L"$^^" },
{ L"ç", L"$^^" },
{ L"ç", L"$^^" },
{ L"ç", L"$^^" }
};
but I get an error when compiling:
array type has incomplete element type
so what's wrong and what to do to solve that problem?
wchar_t, but to pointers towchar_t.