how do i read 1 word from line of text and put it in a vector?
There are multiple lines in this file. Then I need to read the second word from each line... and so on and so forth. I know this is a noobie question but I am really stuck here
To get each word, you can use std::string's .find() and .substr() to get the parts of the string you want. Look in the reference section on the site for info on these.