the function of this code



float Circle::Circumference (void) const
What does float Circle and circumference (void) const mean from the statement above.
Last edited on
float Circle::Circumference (void) const
{
return 2.0 * PI * radius;
}
Topic archived. No new replies allowed.