Code:
char array1[3][7][7] =
{
{
{'0','0','0','1','0','0','0'},
{'0','0','1','1','0','0','0'},
{'0','0','0','1','0','0','0'},
{'0','0','0','1','0','0','0'},
{'0','0','0','1','0','0','0'},
{'0','0','1','1','1','0','0'}
},
{
{'0','0','2','2','2','0','0'},
{'0','2','0','0','0','2','0'},
{'0','0','0','0','2','0','0'},
{'0','0','0','2','0','0','0'},
{'0','0','2','0','0','0','0'},
{'0','2','0','0','0','0','0'},
{'0','2','2','2','2','2','0'}
},
{
{'0','3','3','3','3','0','0'},
{'0','0','0','0','0','3','0'},
{'0','0','0','0','0','3','0'},
{'0','3','3','3','3','0','0'},
{'0','0','0','0','0','3','0'},
{'0','0','0','0','0','3','0'},
{'0','3','3','3','3','0','0'};
//populate(array1);
display(array1);
return 0; and this is the error