my code only prints the chars of the 2d array.
how to add this "frame" to each char
like in this picture:
http://img184.imageshack.us/img184/74/37908549bp5.gif
Code:void printBoard(char board[N][N],int size){ for(index=0;index<size;index++){ for(kndex=0;kndex<size;kndex++){ printf("%c ",board[index][kndex]); } printf("\n"); } }//end printBoard



LinkBack URL
About LinkBacks



