In C, I have a statement like this:
unsigned char const Alpha[6][2] = (unsigned char)({
{ 0x90f }, { 0x92c, 0x940 }, { 0x938, 0x940 },
{ 0x921, 0x940 }, { 0x908 }, { 0x90f, 0x92b }
});
But it produces an error as braced-group within expression allowed only inside a function
.
Can anyone suggest a remedy.
NOTE:Alpha
is a global constant and so it is outside any function.