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

  1. // Chap09_1.cpp to build this program properly you must
  2. //              include Student.cpp in your project
  3. #include "student.h"
  4.  
  5. Student s;
  6. int main()
  7. {
  8.    //raise my grade (donÆt make it too high; otherwise, no
  9.    //one would believe it
  10.    s.gpa = 3.5;     //<- generates compiler error
  11.    float gpa = s.grade(); //<- this public function reads
  12.                     //a copy of the value, but you canÆt
  13.                     //change it from here
  14.    return 0;
  15. }
  16.