home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
C++-7
/
DISK4
/
SAMPLES
/
IOSTUTOR
/
EXIOS108.CP$
/
EXIOS108
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-11-25
|
253 b
|
16 lines
// exios108.cpp
// The write member function
#include <fstream.h>
struct Date
{
int mo, da, yr;
};
void main()
{
Date dt = { 6, 10, 91 };
ofstream tfile( "date.dat" , ios::binary );
tfile.write( (char *) &dt, sizeof dt );
}