有以下程序: #include <fstream> #include <string> using namespace std; int main () { char ch[] = "The end";

admin2009-02-15  31

问题 有以下程序:
   #include <fstream>
   #include <string>
   using namespace std;
   int main ()
   {
      char ch[]  = "The end";
      ofstream outstr( "d:\\put.txt", ios_base: :app);
      for (int i = 0; i < strlen( ch ); i++ )
         outstr.put(ch);
      outstr.close();
      return 0;
   }
   程序实现的功能是【  】。

选项

答案在文件put.txt的尾部追加写入一串字符

解析 解本题的关键是要了解文件打开模式常量ios_base::app的含义。常量ios base::app表示为添加数据而打开文件(总是在文件尾部写),因此上述程序实现的功能就是在文件尾部写入数组ch中字符串。
转载请注明原文地址:https://kaotiyun.com/show/17kp777K
0

相关试题推荐
最新回复(0)