Find the output of the following program.
include
using namespace std;
class education
{
public:
void disp()
{
cout << "Its education system";
}
};
class school : public education
{
public:
void disp()
{
cout << "Its school education system";
}
};
int main()
{
school s;
s.disp();
return 0;
}
1
Its school education system
2
Its education system
3
Its school education systemIts education system
4
Its education systemIts school education system