/* namespace1.cpp CIS 250 March 7, 2005 David Klick Demonstration of namespace usage. */ #include using std::cout; using std::endl; namespace Dave { int x = 7; }; int main(void) { int x = 5; cout << x << " " << Dave::x << endl; return 0; }