home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
C++-7
/
DISK4
/
SAMPLES
/
IOSTUTOR
/
EXIOS112.CP$
/
EXIOS112
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-11-25
|
244 b
|
12 lines
// exios112.cpp
// Binary example 2
#include <fstream.h>
int iarray[2] = { 99, 10 };
void main()
{
ofstream ofs ( "test.dat" );
ofs.setmode( filebuf::binary );
ofs.write( (char*)iarray, 4 );
// Exactly 4 bytes written
}