From cc95aadaeac0f2b918e6dcd5e39c8e4b3a68298d Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 22 Oct 2024 21:53:23 -0700 Subject: [PATCH] Update Q2.c --- Q2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Q2.c b/Q2.c index 3412d11..e0da447 100644 --- a/Q2.c +++ b/Q2.c @@ -33,6 +33,8 @@ Student highest_grade(Student arr[], int len) { } int main() { + // Students to test functions + // All will just have grades, nothing else filled out so we can test mark checking functions Student John; John.grades[0] = 3; John.grades[1] = 4;