Kind of a convoluted question, but is it possible to read input from the user but making cin not stop at newlines or whitespaces? For example, the user can input:
Hello w orld!
Hello World!
And I'd want all of the spaces and newline characters input into the string, just basically raw input from the user. Can someone tell me how I could do this in C++? Thanks.