We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0c6488 commit 862b7c4Copy full SHA for 862b7c4
.gitignore
@@ -1,3 +1,6 @@
1
+# ENDIL: exclude Visual Studio solution directory
2
+c-dokuVS
3
+
4
# Object files
5
*.o
6
*.ko
sudoku.c
@@ -46,6 +46,10 @@ int main(int argc, char* argv[])
46
initializeSudokuBoard(&board);
47
initializeString(&commandInput.string);
48
49
+ puts("========== Sudoku Game ==========");
50
+ puts(showAllCommandsPrompt);
51
+ putchar('\n');
52
53
// if one argument was provided, go ahead and load sudoku board from textfile
54
if (argc > 1)
55
{
@@ -54,9 +58,6 @@ int main(int argc, char* argv[])
58
loadSudokuBoard(argv[1], &board);
59
}
56
60
57
- puts("========== Sudoku Game ==========");
- puts(showAllCommandsPrompt);
- putchar('\n');
61
printSudokuBoard(&board);
62
63
while (running)
0 commit comments