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

  1. // exios112.cpp
  2. // Binary example 2
  3. #include <fstream.h>
  4. int iarray[2] = { 99, 10 };
  5. void main()
  6. {
  7.     ofstream ofs ( "test.dat" );
  8.     ofs.setmode( filebuf::binary );
  9.     ofs.write( (char*)iarray, 4 ); 
  10. // Exactly 4 bytes written
  11. }
  12.