home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c031
/
4.ddi
/
SAMPLES
/
IOSTUTOR
/
EXIOS112.CP$
/
EXIOS112
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
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
}