Object Functions
Lesson 29Author : GOUP
Last Updated : September, 2020
Code
class Book{
public:
string title;
string author;
void readBook(){
cout << "Reading " + this->title + " by " + this->author << endl;
}
};