#include <iostream> using namespace std; class CWH{ protected: float rating; public: CWH(float r){ cout<<"Hello"<<endl<<endl; rating=r; } virtual void display(void) { cout<<"Harry bhaiya beautiful"<<endl; } }; class CWHvideo:public CWH{ protected: string name; float length; int views; public: CWHvideo(string n,float l,int v,float r):CWH(r){ name=n; length=l; views=v; } void display(void) { cout<<"Name of our video channel is "<<name<<endl <<"Length of the video is "<<length<<endl<< "Total views on the video is "<<views<<endl<< "Total rating of this video chann...