Untitled

 avatar
unknown
plain_text
a year ago
248 B
3
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