填空题
执行如下程序后的输出结果是 【15】 。
#include <iostream>
#include <fstream>
using namespace std;
int main ( )
char s[25];
ofstream fl("data.txt");
f1<<"C++ Programming";
f1.close ();
ifstream f2 ("data.txt");
if (f2.good()) f2>>s;
f2.close();
cout<<s;
return 0;
【参考答案】
C++