I'm trying to open a file and read it word by word. I can't figure out where my issue is as it seems to break down after opening the file.
#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <vector>
#include <array>
using namespace std;
int main()
{
    string path, test;
    ifstream inputFile;
    vector<string> words;
    cout << "What is the path for the input file? ";
    getline(cin, path);
    inputFile.open(path, ios::in);
    while (!inputFile.eof())
    {
        cin >> test;
        words.push_back(test);
    }
    for (int i = 0; i < words.size(); i++)
    {
        cout << words.at(i) << endl;
    }
    inputFile.close();
    return 0;
}
 
     
     
     
    