circle.h 90 B

1234567
  1. #ifndef CIRCLE_H
  2. #define CIRCLE_H
  3. struct Circle
  4. {
  5. const double radius = 4.0;
  6. };
  7. #endif