0
What for using namespacr is used?
i just dont get it why it is used!?... why it is relevant?
1 Answer
+ 2
Just making the syntax lighter.
For example iostream and cout function :
Without namespace std => std::cout << ... ;
With it => cout <<...;



