The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
File managmnet 104
By Guest on 16th January 2023 12:23:11 PM | Syntax: TEXT | Views: 56



New paste | Download | Show/Hide line no. | Copy text to clipboard
  1. #include<iostream>
  2. #include<fstream>
  3. using namespace std;
  4. int main()
  5. {
  6.         fstream myfile;
  7.         myfile.open("methology.txt");
  8.         string line;
  9.         while(!myfile.eof())
  10.         {
  11.         myfile>>line;//myfile>>line;
  12.         cout<<line<<endl;      
  13.         }
  14.        
  15.         myfile.close();
  16. }



  • Recent Pastes