#include<iostream.h>
struct rectInfo{
float height ;
float width;
float area;
float perimeter;
};
/* write a function void gendata(rectInfo * r)to generate and assing values to
the height and width member of r(value should be b\w 1 - 20 )*/
void gendata(rectInfo * r)
{
}