#include<iostream.h>
#include<conio.h>
class rec
{
private:
int I,b;
public:
rec()
{
I=4;
b=3;
}
int area()
{
return(I*b);
}
};
void main()
{
clrscr();
rec obj;
cout<<"Area is : "<<obj.area();
getch();
}
Output :
Area is : 12
Dinesh Thakur holds an B.SC (Computer Science), MCSE, MCDBA, CCNA, CCNP, A+, SCJP certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps. For any type of query or something that you think is missing, please feel free to Contact us.
Search Content
Popular Article
Basic Courses
Advance Courses