#include #include #include "announcer.h" using namespace std; int main() { const announcer f1 {10}; const announcer f2 {20}; const announcer f3 {30}; cout << "\n"; cout << "in the main function\n\n"; return EXIT_SUCCESS; //f3, f3, f1 die here. }