✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void insertAtBeginning(list &lst, const string &data)
{
lst.push_front(data);
}
Apa gunanya & pada lst dan data?