I don't understand why I am getting the error:
initialization of 'element' is skipped by 'case' label.
Can someone please explain to me?
void LinkedList::process_example(int choice) {
    switch(choice) {
    case 1:
        cout << endl << endl << "Current S = ";
        this->printSet();
        cout << "Enter an element :";
        char* element = "lol";
        //cin>>element;
        cin.clear();
        cin.ignore(200, '\n');
        this->Addelementfromback(element); //error is here
        cout << endl << endl << "Current S = ";
        this->printSet();
        break;
    case 2:
        this->check_element();
        break;
    case 3:
        cout << endl << endl;
        cout << "Current Set S = ";
        this->printSet();
        cout << endl << "S has ";
        int count = this ->check_cardinality();
        cout << count << " elements";
        break;
    }
}
 
     
     
     
     
    