I'm having problems reading taking an input using cin.getlin
[LIST=1]
[*]cout << "Enter record: ";
[*]cin.getline(title, 100);
[*]csis << "Enter record title: " << title << endl;
[*]rec->setTitle(title);
[*]cout << "Enter performer: ";
[*]cin.getline(name, 100);
[*]csis << "Enter performer: " << name << endl;
[*]rec->setPerformer(name);
[/LIST]
The program jumps to the capture the "name" var without allowing the user to input the "title" var
This is how it looks in the console window
Enter record title: Enter performer:
Any thoughts....