执行如下程序后的输出结果是【 】。 #include <iostream> #include <fstream> using namespace std; int main ( ) { char s

admin2010-06-06  13

问题 执行如下程序后的输出结果是【  】。
    #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");

选项

答案C++

解析 程序先在当前目录下建立一个data文本文件,并写入“C++ Programming”。然后打开该文件,将其中的数据输入到变量s中,由于采用提取符“>>”读时遇到空格终止,所以最后字符数组s中存放的是“C++”。
转载请注明原文地址:https://kaotiyun.com/show/iujp777K
0

最新回复(0)