I'm having some minor trouble with this basic C++ quiz program. In the main function, I have the user enter his/her name and I pass this string to the next function, take_quiz. However, I've noticed that if I include a name with a space in it (like a first and last name), an error occurs. For some reason, the amount of letters in the second word produces the same amount of displays of, "Please enter a valid answer (a, b, c, d)." I thought this was strange because that prompt can only occur when the inline function valCheck is used which is after the first cin of a variable in take_quiz. I need some help identifying the issue and correcting it. Thanks!
inline char valCheck(char& input)
    {
         tolower(input);
         while(input < 97 || input > 100)
         {    
             cout << "Please enter a valid answer (a, b, c, d):" << endl;
             cin  >> input;
         }
    }
    int main(int argc, char *argv[])
    {
         string name;
         cout << "This program will quiz your knowledge of C++. Please enter your name:" << endl;
         cin  >> name;
         cout << "Hello " << name << "! IT'S QUIZ TIME!!!" << endl;
         take_quiz(name);
         system("PAUSE");
         return EXIT_SUCCESS;
    }
    void take_quiz(string name2)
    {    
         char quiz_results[10];
         system("PAUSE");
         cout << "\nThe quiz will now begin.\nThis quiz covers topics such as data types, arrays, pointers, etc." << endl
              << "To answer the multiple choice questions,\nsimply input a, b, c, or d according to the given options." << endl
              << "The test will continue regardless if you enter a question wrong or right." << endl
              << "Good luck " << name2 << "!" << endl;
         system("PAUSE");
         cout << "\n1. What preprocessor command must one include to use the cout and cin function?" << endl
              << "\na.  #include <iomanip>" << endl
              << "b.    #include <iostream>" << endl
              << "c.    #include <cmath>" << endl
              << "d.    using namespace std;" << endl;
         cin >> quiz_results[0];
         valCheck(quiz_results[0]);
 
     
    