how to make string get spaces c++
string s;
getline(cin,s);
include spaces while reading strings in cpp
Using getline() will help you.
Example:
int main()
{
std::string name, title;
std::cout << "Enter your name: "; //Name: Robert De Niro
std::getline(std::cin, name);
std::cout << "Enter your favourite movie: "; // title: The Irishman
std::getline(std::cin, title);
std::cout << name << "'s favourite movie is " << title;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us