I have no idea how that box is supposed to look like.
But from how you initialize the 2dim array it could be

void disp_box (char b[ROW][COLUMN])
{
int r,c;

for(r=0; r<ROW;r++) {
...