@@ -3,11 +3,12 @@
void screenDisplay( unsigned short int **tab,int size)
{
char element[7] ={' ','#','S','.','*','@','+'} ;
for(int i=0;i<size;++i)
for(int j=0;j<size;++j)
printf("%hu ",tab[i][j]);
printf("%c ",element[tab[i][j]]);
}
puts("");
The note is not visible to the blocked user.