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

  1. // ex10017.cpp
  2. // File output
  3. #include <fstream.h>
  4.  
  5. main()
  6. {
  7.     ofstream tfile("test.dat");
  8.     tfile << "This is test data";
  9. }
  10.