填空题
有如下的程序:
#include<iostream>
#include<fstream>
using namespace std;
int main(){
char s[25]="Programming language";
ofstream f1("DATA.TXT");
f1<<"C++Programming";
n.close();
ifstream f2("DATA.TXT");
if(f2.good())f2>>s;
f2.close();
cout<<s;
return 0;
}
执行上面的程序将输出 ______。
【参考答案】
C++