I\'m creating a simple console application in C++ that gets string and char inputs from the user. To make things simple, I would like to use the string and
You are using std::isstream::ignore() before std::getline(). std::cin.ignore() will extract the first character from the input sequence and discard that.