Consider the following class declaration: class Circle { …
Consider the following class declaration: class Circle { public: void print(); double get_area(); double get_circumference(); Circle(); Circle(double); private: int radius; }; Which of the following correctly creates and instantiates an object of this class? (Hint: remember that we traditionally use uppercase names to refer to data types or class names and lowercase names to refer to variables or objects, respectively.)