| 5 | double localHelper(double x, unsigned n); // Declares an external localHelper() function |
| 6 | |
| 7 | int main() |
| 8 | { |
| 9 | for (unsigned i{ 0 }; i <= 5; ++i) // Calculate positive powers of 8 |
| 10 | std::cout << std::format("{:10}\n", localHelper(8.0, i)); |
| 11 | std::cout << std::endl; |
| 12 | } |
nothing calls this directly
no test coverage detected