#include #include #include "derived_weather.h" using namespace std; int main() { const base_weather b {20.0, 10.0}; //humidity, wind b.print(); cout << "\n"; //Skip a line. const derived_weather d {20.0, 10.0, 10}; //humidity, wind, temp d.print(); return EXIT_SUCCESS; }