I have the following error expected ':', ',', ';', '}' or 'attribute' before '=' token
struct arrap{
char p[6][6] = {
{' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' '}
};
};
it seems that it doesnt work any other ways to initialize the values of the 2d array inside a structure?