diff --git a/education/software development/ECE1400/Chapter 8 Exercises.md b/education/software development/ECE1400/Chapter 8 Exercises.md index de8450a..453c7e2 100644 --- a/education/software development/ECE1400/Chapter 8 Exercises.md +++ b/education/software development/ECE1400/Chapter 8 Exercises.md @@ -38,7 +38,18 @@ const int segments[10][7] = { \[omitted] ```c -char ch +char chess_board[8][8] = { + {'r', 'n', 'b', 'q', 'k', 'b', 'n', 'r'}, + {'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p'}, + {' ', '.', ' ', '.', ' ', '.', ' ', '.'}, + {'.', ' ', '.', ' ', '.', ' ', '.', ' '}, + {' ', '.', ' ', '.', ' ', '.', ' ', '.'}, + {'.', ' ', '.', ' ', '.', ' ', '.', ' '}, + {' ', '.', ' ', '.', ' ', '.', ' ', '.'}, + {'.', ' ', '.', ' ', '.', ' ', '.', ' '}, + {'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P'}, + {'R', 'N', 'B', 'K', 'Q', 'B', 'N', 'R'}, +}; ```