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

  1. // Chap12_1
  2. #include "student.h"
  3. int main()
  4. {
  5.    Student s("Danny");        //construct little Danny
  6.    return 0;
  7. }                             //now, get rid of him
  8.