I am curious as to how I would go about reading the input from a text file with no set structure (Such as notes or a small report) word by word. The text for example might b
Yes. You're looking for std::istream::operator>> :) Note that it will remove consecutive whitespace but I doubt that's a problem here.
std::istream::operator>>
i.e.
std::ifstream file("filename"); std::vector words; std::string currentWord; while(file >> currentWord) words.push_back(currentWord);