home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX09003.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  129 b   |  10 lines

  1. // ex09003.cpp
  2. // Using a derived class
  3. #include "timezone.h"
  4.  
  5. main()
  6. {
  7.     TimeZone tz(10, 26, 0, est);
  8.     tz.display();
  9. }
  10.