home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX10018.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  160 b   |  10 lines

  1. // ex10018.cpp
  2. // Appending to an output file
  3. #include <fstream.h>
  4.  
  5. main()
  6. {
  7.     ofstream tfile("test.dat", ios::app);
  8.     tfile << ", and this is more";
  9. }
  10.