-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInheritence in cpp.cpp
More file actions
52 lines (43 loc) · 848 Bytes
/
Inheritence in cpp.cpp
File metadata and controls
52 lines (43 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <iostream>
#include<string>
using namespace std;
class person{
public:
string name;
int age;
void setname(string iname)
{
name=iname;
}
void setage(int iage)
{
age=iage;
}
};
class student:public person{
public:
int id;
int cid;
void setid(int iid)
{
id=iid;
}
void setcid(int ccid)
{
cid=ccid;
}
void introduce()
{
cout<<"Hi i am "<<name<<"I am "<<age<<"years old"<<endl<<"MY id card no is "<<id<<"Library id no is "<<cid<<endl;
}
};
int main()
{
student Amartyapandey;
Amartyapandey.setname("Amartyapandey");
Amartyapandey.setage(20);
Amartyapandey.setid(123456);
Amartyapandey.setcid(54321);
Amartyapandey.introduce();
return 0;
}