Hi ,
I am new to c++. I am reading "C++ How to Program" .In one example author divided the program into 3 files.
The first one is Gradebook.h which contains prototypes.
second Gradebook.cpp which contains actual implementations of member functions of Gradebook.h.
last file is fig03-14.cpp which contains objects to the classes and calling the member functions.
I dont know how to compile these multiple files. I am DEV-C++ compiler.
Any one give me the procedure how to compile these 3 files.