MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / Circle

Class Circle

Lab_18/main.cpp:51–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49};
50
51class Circle : public Shape
52{
53public:
54 void display_area()
55 {
56 cout << "Area of Circle: " << base * base * 3.1415 << endl;
57 }
58};
59
60int main()
61{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected