To clarify the title, I want to know how to work past the fact that whitespaces are read as delimiters. So when the name "John Smith" is entered into
Code:
string name;
cin >> name;
The string will hold "John Smith", not "John."

Thank you ahead of time.