填空题

有如下的程序:
#include<iostream>
#include<fstream>
using namespace std;
int main()
char s[25]="Programming language";
ofstream f1(DATA.TXT");
f1<<"C++ Programming";
f1.close();
ifstream f2 ("DATA.TXT");
if(f2.good())f2>>s;
f2. close();
cout<<s;
return 0;执行上面的程序交输出 【9】

【参考答案】

C++