1.

         Note:Includes all required header filesusing namespace std; int main() {   ofstream ofile;    ofile.open ("find.txt");    ofile << "letsfindcourse" << endl;   cout << "Data written to file" << endl;   ofile.close();    return 0;}  
12.What is the output of this program?

A. course
B. fine
C. Returns fine 2 letter or number from the entered word
D. None of the mentioned
Answer» D. None of the mentioned


Discussion

No Comment Found

Related MCQs