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

  1. // Chap08_2.c  to build this program properly you must
  2. //             include Student.cpp in your project
  3. #include "Student.h"
  4.  
  5. //same as before, but this time using references
  6. void someFn(Student &refS) 
  7. {
  8.    refS.semesterHours = 10;
  9.    refS.gpa           = 3.0;
  10.    refS.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.  
  20.