填空题 有如下的程序:
#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;
return0;
}
执行上面的程序将输出 1
【正确答案】
【答案解析】C++