You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h>
|
|
int main()
|
|
{
|
|
int board[9][9]={0};
|
|
int i,j;
|
|
for(i=0;i<9;i++)
|
|
{
|
|
printf("|");
|
|
for(j=0;j<9;j++)
|
|
{
|
|
printf("%d",board[i][j]);
|
|
if(j!=8)
|
|
{
|
|
printf(" ");
|
|
}
|
|
}
|
|
printf("|");
|
|
printf("\n");
|
|
}
|
|
}
|