Question: 8. Use the following code to describe a rectangle. Assume the rectangle sides are parallel to the x and y axes (no rotation), and that

8. Use the following code to describe a rectangle. Assume the rectangle sides are parallel to the x and y axes (no rotation), and that the corners of the rectangle are located properly according to their compass designations in the structure.

struct point {

int x,y;

};

struct rect {

struct point ne,se,sw,nw;

};

Write a function called RectArea() that returns an integer value equal to the area of the given rectangle. The rectangle should be passed in as an argument.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!