diff --git a/program1.c b/program1.c new file mode 100644 index 0000000..0303760 --- /dev/null +++ b/program1.c @@ -0,0 +1,20 @@ +#include +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"); + } +}