// FILE: PrtStDrv.cpp // DRIVER FOR FUNCTION "print_stat" #include #include "apstring.h" #include "ExamStat.h" #include "PrintSta.cpp" #include "RdStud.cpp" // Functions Used... // READS IN EXAM STATS OF A SINGLE STUDENT void read_student (exam_stats &); // OUT: The destination for the data read // PRINTS THE EXAM STATISTICS void print_stat (exam_stats); // IN: the structure variable to be displayed // Driver (not included in the text) int main () { // Local Data... exam_stats a_student; read_student (a_student); print_stat(a_student); return 0; }