#include #include #include "announcer.h" using namespace std; int main() { const announcer m1 {"m1"}; const announcer m2 {"m2"}; const announcer m3 {"m3"}; cout << "\n" << "In the middle of the main function, " << "there are " << announcer::howMany() << " objects.\n\n"; return EXIT_SUCCESS; //m3, m2, m1 die here, in that order. }