home *** CD-ROM | disk | FTP | other *** search
/ C++ for Dummies (3rd Edition) / C_FD.iso / CHAP08 / CHAP08_1.CPP next >
C/C++ Source or Header  |  1996-09-15  |  362b  |  19 lines

  1. // Chap08_1.c - to build this program properly you must
  2. //              include Student.cpp in your project
  3. #include "student.h"
  4.  
  5. // application code
  6. void someFn(Student *pS) 
  7. {
  8.    pS->semesterHours = 10;
  9.    pS->gpa           = 3.0;
  10.    pS->addCourse(3, 4.0);  //call the member function
  11. }
  12.  
  13. Student s;
  14. int main()
  15. {
  16.    someFn(&s);
  17.    return 0;
  18. }
  19.