From df16aedfcdd52f6f591384cc9b8a44e8f52d59b1 Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:30:42 -0600 Subject: [PATCH] vault backup: 2024-10-08 21:30:42 --- .../ECE1400/Chapter 8 Exercises.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/education/software development/ECE1400/Chapter 8 Exercises.md b/education/software development/ECE1400/Chapter 8 Exercises.md index a4774fb..b062c69 100644 --- a/education/software development/ECE1400/Chapter 8 Exercises.md +++ b/education/software development/ECE1400/Chapter 8 Exercises.md @@ -20,10 +20,13 @@ const int segments[10][7] = {{1, 1, 1, 1, 1, 1, 0}, ...}; ```c const int segments[10][7] = { - {1, 1, 1, 1, 1, 1, 0}, // 0 - {0, 1, 1, 0, 0, 0, 0}, // 1 - {1, 1, 0, 1, 1, 0, 1}, // 2 - {1, } + {1, 1, 1, 1, 1, 1, 0}, // 0 + {0, 1, 1, 0, 0, 0, 0}, // 1 + {1, 1, 0, 1, 1, 0, 1}, // 2 + {1, 1, 1, 1, 0, 0, 1}, // 3 + {0, 1, 1, 0, 0, 1, 0}, // 4 + {1, 0, 1, 1, 0, 1, 1}, // 5 + }; ```