Code /* namespace1.cpp CIS 250 David Klick 2005-03-07 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; }