home
clear breadcrumbs
search
login
 
namespace
#include
using namespace std; namespace home { string phone = "203-567-2297"; } namespace work { string phone = "860-231-0934"; } string first_name = "Pete"; int main() { cout << first_name << "'s Work number is " << work::phone << endl; cout << first_name << "'s Home number is " << home::phone << endl; }