step 4 does not work fully

This commit is contained in:
SowinskiBraeden committed 2024-10-13 22:39:13 -07:00
1 parent 8b4c63325f
commit 82a3d30aa0
4 files changed
+68 -26

No files matched your search

+1 -1
View File
@@ -6,7 +6,7 @@
#define COURSES_H_INCLUDED
typedef struct {
char uniqueCrsNos[MAX_COURSES][MAX_COURSE_NO_LEN];
char uniqueCrsNos[MAX_CLASSES][MAX_COURSE_NO_LEN];
uint16_t numberOfCourses;
} UNIQUE_COURSES;
+1 -1
View File
@@ -26,7 +26,7 @@
#define MIN_REQ 18
#define CLASS_CAP 30
#define MAX_STUDENTS CLASS_CAP * CLASSROOMS
#define MAX_COURSES CLASSROOMS * TOTAL_BLOCKS
#define MAX_CLASSES CLASSROOMS * TOTAL_BLOCKS
// 5 is the length of "FALSE" & 3 is the number of commas per line
#define MAX_CHAR MAX_PUPIL_NUM_LEN + MAX_COURSE_NO_LEN + MAX_COURSE_DES_LEN + 5 + 3