// Driver program #include "info.h" #include "fee.h" #include void main() { for (int i = 1; i < 5; i++) { fee F; cout << "Student #" << i << "\n"; F.readFee(); F.printFee(); cout << "\nTotal Owed: $" << F.calcFees(); cout << "\n---------\n\n"; } cout << "\nProgram Ends" << endl; }