I have following declaration of the array
char Letters [7] [4] ={
{"A","B","C","D","E","F","G"},
{"H","I","J","K","L","M","N"},
{"O","P","Q","R","S","T","U"},
{"V","W","X","Y","Z","-"," "},
};
And when I compile I get
too many initializers for 'char [4]'
Any idea what is wrong here?