home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK4 / SAMPLES / CPPTUTOR / PERSINFO.CP$ / PERSINFO
Encoding:
Text File  |  1991-12-11  |  318 b   |  15 lines

  1. // PERSINFO.CPP
  2.  
  3. #include "persinfo.h"
  4. #include <string.h>
  5.  
  6. PersonInfo::PersonInfo( const char *nm, const char *addr, int mn, int dy, int yr )
  7.     : birthday( mn, dy, yr ) // Member-initializer
  8. {
  9.     strncpy( name, nm, 30 );
  10.     name[29] = '\0';
  11.     strncpy( address, addr, 60 );
  12.     name[59] = '\0';
  13. }
  14.  
  15.