ch19_2.cpp
Upload User: gzy2011
Upload Date: 2021-02-09
Package Size: 20k
Code Size: 0k
Development Platform:

Visual C++

  1. //ch19_2.cpp:p419
  2. #include"fstream.h"
  3. void fn()
  4. {
  5. ofstream myf("d:\test\myfile",ios::binary|ios::ate);
  6.  myf<<"In each of following questions,a related pairn"
  7.  <<"of words or phrases is followed by five lettered pairsn"
  8.  <<"of words or phrases.n";
  9. }
  10. void main(void)
  11. {
  12. fn();
  13. }