cout << "Please enter the name you wish to have: ";
string Name;
cin >> Name;
I have identified the string, but I am getting errors with the cin saying 'error C2679: binary '>>': no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion).'
I'm a beginner, obviously, so any help would be great, thanks.