#include #include #include "kelvin_cricket.h" //This header file #includes the other two. using namespace std; int main() { metric_cricket mc {33}; //room temperature, 72 degress Fahrenheit cout << "Celsius == " << mc.celsius() << "\n"; cout << "Fahrenheit == " << mc.fahrenheit() << "\n"; cricket *p {&mc}; cout << "Fahrenheit == " << p->fahrenheit() << "\n"; cricket& r {mc}; cout << "Fahrenheit == " << r.fahrenheit() << "\n"; return EXIT_SUCCESS; }