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 + }; ```