I found this among a supposedly trivial Tetris console game code.
wchar_t *screen = new wchar_t[];
unsigned char *pField;
.
.
.
screen[someMathIndex] = L" ABCDEFG=#"[pField[someOtherMathIndex]];
What is an wchar string in front of square brackets even mean? I can't even able to find a way to google it. Can you redirect me to some resource of this strange thing maybe.