Question #312445

A quadrilateral is represented by having Dimensions L and B units. Write a program to create two objects. Initialize one using default constructor and other using parameterized Constructor. Find out the perimeter of the quadrilateral and print it


Expert's answer

Here is my program:

class Quadriateral
{
public:
	Quadriateral(int L , int B)
	{
		this->L = L;
		this->B = B;
	}
private:
	int L;
	int B;
};


int main()
{
	Quadriateral quad();
	Quadriateral quad2(3, 4);
}
LATEST TUTORIALS
APPROVED BY CLIENTS