Untitled
unknown
plain_text
2 years ago
248 B
6
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