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 using namespace std; int main() string s; while( getline( cin, s ) ) { // do something with s } }