forked from seeditsolution/cprogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses
36 lines (31 loc) · 753 Bytes
/
classes
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
#include<iostream>
using namespace std;
class employee
{
private:
int a , b , c;
public:
int d , e;
void setdata(int a1, int b1, int c1); //Declaration
void getdata(){
cout<<"THe value of a is "<<a<<endl;
cout<<"THe value of b is "<<b<<endl;
cout<<"THe value of c is "<<c<<endl;
cout<<"THe value of d is "<<d<<endl;
cout<<"THe value of e is "<<e<<endl;
};
};
void employee :: setdata(int a1, int b1, int c1){
a = a1;
b = b1;
c = c1;
}
int main(){
employee lucky;
//! lucky.a =134; --> This will throw error as a is private
lucky.d= 35;
lucky.e=45;
lucky.setdata(1,2,4);
lucky.getdata();
return 0;
}