From 4b75ea7a746d1a0d50dddc8a48cd249dadfd092c Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 8 Oct 2024 22:06:51 -0600 Subject: [PATCH] vault backup: 2024-10-08 22:06:51 --- .../ECE1400/Chapter 8 Exercises.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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'}, +}; ```