Update Q2.c

This commit is contained in:
2024-10-22 21:53:23 -07:00
parent 205d8c6105
commit cc95aadaea

2
Q2.c
View File

@@ -33,6 +33,8 @@ Student highest_grade(Student arr[], int len) {
} }
int main() { int main() {
// Students to test functions
// All will just have grades, nothing else filled out so we can test mark checking functions
Student John; Student John;
John.grades[0] = 3; John.grades[0] = 3;
John.grades[1] = 4; John.grades[1] = 4;