Skip to content

Create BasicInheritance.cpp #164

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
48 changes: 48 additions & 0 deletions CPP/questions/BasicInheritance.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
//private inheritance
#include <iostream>
using namespace std;
class person
{
int id;
string name;
public:
void set_p()
{
cout<<"Enter id\n";
cin>>id;
cout<<"Enter name\n";
cin>>name;
//cout<<name;
}
void display()
{
cout<<"Name is "<<name<<"\n";
cout<<"Id is "<<id<<"\n";
}
};
class Student:private person
{
string courseName;
int fee;
public:
void get_s()
{
set_p();
cout<<"Enter Course Name\n";
cin>>courseName;
cout<<"Enter fee\n";
cin>>fee;

}
void S_display()
{
display();
cout<<courseName<<"\n"<<fee;
}
};
int main()
{
Student s;
s.get_s();
s.S_display();
}