1.

        Note:Includes all required header files           using namespace std;    int main ()     {        ofstream outfile ("find.txt");        for (int i = 0; i < 70; i++)        {            outfile << i;            outfile.flush();        }        cout << "Done";        outfile.close();        return 0;    }       
14.What is the output of this program?

A. 1000
B. 3.14
C. 3140
D. All of the above
Answer» E.


Discussion

No Comment Found

Related MCQs