So I'm working on that program that uses .txt files to store data, and I have one problem: I can't recover one full name from the .txt file
It's a school library program and it uses the <fstream> library for file operations, it stores theBookSignature >> theNameOfTheAuthor >> theBooksName.
I understand that C++ stops the input of a line when it stumbles upon a space, but isn't there something like a getline(cin, variableName) for file streams?