#include #include // file: page.cc // using a parameter in a function // simulate airport paging void Page(string person) { cout << "Paging " << person << endl; cout << "Paging " << person << endl; cout << person << ", please call the operator from a white " << "courtesy telephone." << endl; } int main() { Page("Ms. Smith"); Page("Dr. Adams"); return 0; } Sample output: Paging Ms. Smith >Paging Ms. Smith >Ms. Smith, please call the operator from a white courtesy telephone. >Paging Dr. Adams >Paging Dr. Adams >Dr. Adams, please call the operator from a white courtesy telephone.