#include #include #include using namespace std; int main() { const string a[] { "The Dog Barks!", // 0 Dog "The Cat Meows!", // 1 Cat "The Cow Moos!", // 2 Cow "The Duck Quacks!", // 3 Duck "The Lion Roars!", // 4 Lion "The Elephant Trumps!", // 5 Elephant "The Owl Hoots!", // 6 Owl "The Dolphin Clicks!" // 7 Dolphin }; const size_t n {size(a)}; for (int animal {0}; animal < n; ++animal) { cout << a[animal] << "\n"; } return EXIT_SUCCESS; }