Beginning C++ Programming
Errata
                             “Declaring and Initializing Arrays”
The code examples in this video show the declaration of days_in_year as follows:
const double days_in_year {365};
This is incorrect. The type of days_in_year should be int since it is being used to declare the size of
the array hi_temperatures.
The correct declaration should be:
const int days_in_year {365};
Best regards,
Frank Mitropoulos
                                                   1                                          Updated: 5/2018