--------------------------------------------------------------------- README file for the Student Class --------------------------------------------------------------------- We define a class Student with a few member functions (or behaviors), including some convenient operators, plus a number of helper functions. The main program is just a driver to see at work the various operations and helper functions. --------------------------------------------------------------------- We decompose the program into two cpp files. student.h - The specification of the Student class. student.cpp - Implementation of the Student class main.c - The main program that uses the Student class. These files will be compiled in Unix as follows: g++ -c main.cpp g++ -c student.cpp g++ -o main main.o student.o In this directory you will see a primitive makefile that will compile all the needed things. You will just say make and all that is necessary will be compiled. You will run the program with the command main If instead you are using Visual C++, then you just make sure that main.cpp, student.h, and student.cpp are in the current project (say studentclass) and the system will take care of everything. ---------------------------------------------------------------------