write a program in cpp to
find the perimeter of a circle using static data member.
Static Data Member = R
R = 2.5
Answers
Answered by
1
Explanation:
Static data members are class members that are declared using the static keyword. There is only one copy of the static data member in the class, even if there are many class objects. ... The static data member is always initialized to zero when the first class object is created.
Similar questions