I am using fstream and C++ and all I want my program to do is to print out to the terminal the contents of my .txt file. It may be simple, but I have looked at many things on the web and I can't find anything that will help me. How can I do this? Here is the code I have so far:
    #include <iostream>
#include <fstream>
using namespace std;
int main() {
    string output;
    ifstream myfile;
    ofstream myfile2;
    string STRING;
    myfile.open ("/Volumes/LFARLEIGH/Lucas.txt");
    myfile2 << "Lucas, It Worked";
        myfile >> STRING;
        cout << STRING << endl;
    myfile.close();
    return 0;
}
Thank you in advance. Please forgive me if this is very simple as I quite new to C++
 
     
     
    