-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreatingclass.cpp
More file actions
68 lines (41 loc) · 911 Bytes
/
creatingclass.cpp
File metadata and controls
68 lines (41 loc) · 911 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include<iostream>
using namespace std;
class student{
private:
int mark=20;
public:
int age;
int roll;
int getmark()
{
cout<<"marks:"<<mark<<endl;
}
int setmark()
{
if(mark<33)
{cout<<"fail"<<endl;
}
else
{
return mark;
}
}
};
int main()
{
student s1; //statically
student s2;
student s3,s4,s5;
s1.age=24;
s1.roll=100;
cout<<s1.age<<endl;
cout<<s1.roll<<endl;
cout<<s1.getmark()<<endl;
cout<<s1.setmark()<<endl;
student *s6= new student; //dynamically
s6->age=34;
s6->roll=123;
cout<<s6->age<<endl;
cout<<s6->roll<<endl;
return 0;
}