Untitled

Anonymous
plain_text
05/28/2024 10:48 AM
332 B
16
Indexable
// Method to return a string representation of the student
    std::string to_string() const {
        std::stringstream str;
        str << age << "," << first_name << "," << last_name << "," << standard;
        return str.str();
    }
};
Editor is loading...
Leave a Comment