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

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