lundi 17 février 2020

How do you assign a const string &str to a string pointer? Shown in picture

void setString(const std::string &strToSet) {
    // std::string *ptr;
    ptr = strToSet;
}

How do you assign strToSet to ptr?

What is the point of making strToSet const?

Aucun commentaire:

Enregistrer un commentaire