Find the output of the program:
class education
{
char name[10];
public : disp()
{
cout<<”Its education system”;
}
class school:public education
{
public: void dsip()
{
cout<<”Its school education system”;
}
};
void main()
{
school s;
s.disp();
}
}
- Its school education system
- Its education system
- Its school education systemIts education system
- Its education systemIts school education system
(a).Its school education system
need an explanation for this answer? contact us directly to get an explanation for this answer