home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK4 / SAMPLES / IOSTUTOR / EXIOS108.CP$ / EXIOS108
Encoding:
Text File  |  1991-11-25  |  253 b   |  16 lines

  1. // exios108.cpp
  2. // The write member function
  3. #include <fstream.h>
  4.  
  5. struct Date
  6. {
  7.    int mo, da, yr;
  8. };
  9.  
  10. void main()
  11. {
  12.    Date dt = { 6, 10, 91 };
  13.    ofstream tfile( "date.dat" , ios::binary );
  14.    tfile.write( (char *) &dt, sizeof dt );
  15. }
  16.