Using the concept of Inheritance write a C++ Program to calculate the area and perimeter of rectangle
/* C++ Program to calculate the area and perimeter of rectangles using concept of inheritance. */ #include using namespace std; class Rectangle { …