Skip to content

Create SingleInheritance.cpp #163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions CPP/questions/SingleInheritance.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#include <iostream>
using namespace std;
class person
{
protected:
string aa;
public:
string name;
int age;
void get_p()
{
cout<<"Enter Name\n";
cin>>name;
cout<<"Enter age\n";
cin>>age;
}
void display_p()
{
cout<<"Name is "<<name<<"\n";
cout<<"Age is "<<age<<"\n";
}

};
class student:public person{
string courseName;
int id;
public:
void get_s()
{
this->get_p();
cout<<"Enter coursename\n";
cin>>courseName;
cout<<"Enter id\n";
cin>>id;
}
void display_s()
{
this->display_p();
cout<<"CourseName is "<<courseName<<"\nid is "<<id<<"\n";
}
};
// class student
// { public:
// int data;}; // this will work but override above same class
int main()
{
student *s;
s=new student();
if(s->name.empty())
cout<<"Hello";
s->get_s();
s->display_s();
person p;
cout<<s->name;
}