I have taken many looks, but I have not been able to find a working snippet which I would understand at my current learning level. What I'm aiming to do is again:
Take input:
string input = "Eggs and Spam";
Tokenize it, and then put the tokens (together) into a list: Which I see as this:
inputlist = ["Eggs", "and", "Spam"];
First, I may like to know how to (hopefully briefly) declare a list, and do the above by appending the list.
In terms of C++, I'm also curious how I could do so when using only the default libraries, as I am having trouble handling library files at the moment.