MCQOPTIONS
Note:Inclu..
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; }