填空题

设文件temp.txt 已存在,则以下的打印结果是 【15】
#include <iostream>
#include <fstream>
using namespace std;
int main()
ofstream outf ("temp.txt",ios base: :trunC) ;
outf<<"How you doing";
outf.close();
ifstream inf("temp.txt");
char str[20];
inf>>str;
inf.close();
cout<<str;
return 0;

【参考答案】

How