What is the correct way to set up a multi dimensional
array in C-lite? In Java it is:

int grad3[][] = {{1,1,0},{-1,1,0},{1,-1,0},{-1,-1,0},
{1,0,1},{-1,0,1},{1,0,-1},{-1,0,-1},
{0,1,1},{0,-1,1},{0,1,-1},{0,-1,-1}};

But that is a syntax error to plug it in that way. Anyone care to enlighten me? Please? tongue