ch19_2.cpp
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 0k
Category:

CSharp

Development Platform:

Visual C++

  1. //**********************
  2. //**    ch19_2.cpp    **
  3. //**********************
  4. #include<fstream.h>
  5. void fn()
  6. {
  7.   ofstream myf("c:\bctemp\myname");    //ios::out|ios::trunc方式
  8.   myf <<"In each of the following questions, a related pairn"
  9.       <<"of words or phrases is followed by five lettered pairsn"       <<"of words or phrases.n";
  10. }
  11. void main()
  12. {
  13.   fn();
  14. }