#include <iostream.h>
#include<conio.h>
class MyClass
{
int a;
public:
MyClass(int x) // constructor defined
{ a = x; }
int geta()
{ return a; }
};
void main()
{
clrscr();
MyClass ob(4);
cout << ob.geta();
getch();
}
Output :
4
By Dinesh Thakur
#include <iostream.h>
#include<conio.h>
class MyClass
{
int a;
public:
MyClass(int x) // constructor defined
{ a = x; }
int geta()
{ return a; }
};
void main()
{
clrscr();
MyClass ob(4);
cout << ob.geta();
getch();
}
Output :
4
Dinesh Thakur is a Freelance Writer who helps different clients from all over the globe. Dinesh has written over 500+ blogs, 30+ eBooks, and 10000+ Posts for all types of clients.
For any type of query or something that you think is missing, please feel free to Contact us.