Grouping Data with struct
Test Scores and Averages
For a course that involves three tests and a final exam, the record for a single student might have the form:
struct student
{
char name[20];
double test1;
double test2;
double test3;
double final;
};
Consider the program
test-scores-1.c
which declares four student variables, initializes the variables, and
prints their records.
-
Copy
test-scores-1.cto your account, compile and run it, and review how it works.-
Where is
struct studentdeclared? Why do you think the declaration comes before procedureprintStudentand beforemain? -
How are the fields of variable
stu1initialized? -
Why do you think
strcpyis used to initialize thenamefield forstu4? -
In printing the output, how are the titles
and
printfstatements coordinated, so that the test scores appear in aligned columns? -
The format
%-20sis used to print the name of a student. What does the minus sign accomplish? (Hint: What happens if the minus sign is removed?)
-
Where is
-
Add function
computeSemesterAveragetotest-scores-1.c. This function should take astruct studentas a parameter and return (not print) the weighted average that counts each test with a weight of 1 and the final exam with a weight of 2. That is, the semester average should be computed as:
(test1 + test2 + test3 + 2 * final) / 5.0;
UsecomputeSemesterAverageto add a column to the output of the program. This should include two parts (plus the definition of the function):-
expand the
printfstatement inprintStudentto include another value—the average for the student, and -
expand the printing of the title in
mainto label the new column.
-
expand the
-
As an experiment, change the value of the
test1field withincomputeSemesterAverageto 120.0. Is this new value printed inprintStudent? Do you think the parameterstruct student stureferences the original data or makes a copy? Explain. -
To change a value in
main, step 3 illustrates that one must pass the address of struct, so the parameter will refer back to the original value. Write a procedureaddTenPercentthat adds 10% totest2of a student. The relevant procedure signature is:
This function would be called withinvoid addTenPercent (struct student * stu)mainwith the address operator (&), with a call such as
WithinaddTenPercent (&stu1);addTenPercent, remember to use the asterisk*to refer back to the original struct inmain:
After printing the original records, call(*stu).test2 = ...addTenPercentfor each of the four students, and then print their records again to check that the test2 scores have been changed.
An Array of Student Scores
Although test-scores-1.c was satisfactory for four
students, the declaration of a different variable (e.g., stu1,
stu2, stu3, stu4) for each student is tedious. As an
alternative, program
test-scores-2.c
defines an array of struct students.
In this program:
-
studentsrepresents the entire array, -
students[0], students[1], students[2], students[3]specify the individual records for each of the four students, -
students[0].test1, students[1].test1, students[2].test1, students[3].test1refer to the test1 scores for each of the students.
-
Working with
test-scores-2.c, copy functionscomputeSemesterAverageandaddTenPercentfromtest-scores-1.c. Also, add the revisedprintStudentprocedure and the revisedprintffor the title.-
Compile and run the updated
test-scores-2.c, and check that the output is the same as you obtained fromtest-scores-1.c. -
Add at least six more student records, so that
the
studentsarray contains information for at least ten students. -
Write a procedure
printMinMaxthat computes and prints the maximum and minimum semester averages for the entire class. Do NOT assume that all averages will be between 0.0 and 100.0, but rather initialize your search for a maximum and minimum with the averages of the first student. The signature of this procedure should be
wherevoid printMinMax (struct student students[], int numStudents)numStudentsindicates the number of students in thestudentsarray. -
Modify
printMinMaxso that it prints the maximum and minimum semester averages, but also the names of the students with those averages. -
Modify
test-scores-2.cso that 10% is added to each student's score for test 2, using theadd10Percentprocedure. This adjustment of student scores should occur after initialization, but before scores are printed or averages computed.
-
Compile and run the updated
typedef statements
When working with test-scores-1.c
and test-scores-2.c, you may have found it somewhat
tedious to write struct student in the declaration of
every variable and parameter. To simplify this syntax, C allows
programmers to define new types. In this case, we might write
typedef struct
{
char name[20];
double test1;
double test2;
double test3;
double exam;
} student_t;
This defines a new data type student_t that you can use
freely within your program with no further explicit mention of
the keyword struct.
-
Copy
test-scores-3.cto your account, compile and run it, and review how thetypedefstatement works.-
What happens if you move the
typedefdeclaration after the definition ofprintStudent? -
Append an additional field,
semesterAvg, to thestudent_tdefinition, but leave the initialization as it is. Does the program compile and run? -
Add printing of the average member
to
printStudent, and observe what value is printed forstu.semesterAvg. How is a field initialized, if other fields of astructare initialized, but all fields are initialized?
-
What happens if you move the
-
After initializing the
student_tarray, use a loop to compute and store each student's semester average:
Check that these computed averages are now printed by the program.for (int i = 0; i < 4; i++) { students[i].semesterAvg = computeSemesterAverage(students[i]); }