I\'m trying to store the input that user enters through console. so I need to include the \"enter\" and any white space.
But cin stops giving me input a
cin
#include #include int main() { std::cout << "enter your name: "; std::string name; std::getline(std::cin, name); return 0; }