The problem I have is how to do a switch where I have to call the certain choices.
int main(void)
{
do
{
cout << "Hello there ." << endl;
cout << "Select from the menu." << endl;
cout << "A gets lyrics." << endl;
cout << "B gets artist." << endl;
cout << "Q quits the program." << endl;
cout << "Your choice: --> " << endl;
cin >> user_choice;
switch (user_choice)
{
case 'A': lyrics
break;
case 'B': artists
break;
}