Code /* Dave.h CIS 250 David Klick 2005-03-07 Demonstration of namespace creation. */ #ifndef __DAVE_H_ #define __DAVE_H_ namespace Dave { int x = 7; int y = 9; }; #endif