Which one of the following is the correct way of declaring a namespace?
A
namespace my;
B
namespace my();
C
my namespace;
D
namespace(my);
Correct Answer: namespace my;
The namespace declaration must be the first statement in its file.