Answers for "class in c"

C++
1

how to make a class c

typedef struct {
  ShapeClass shape;
  float width, height;
} RectangleClass;

static float rectangle_computeArea(const ShapeClass *shape)
{
  const RectangleClass *rect = (const RectangleClass *) shape;
  return rect->width * rect->height;
}
Posted by: Guest on August-27-2021

Browse Popular Code Answers by Language