0
What is namespace?
i see 'namespace' every single program. what is that plzz explain.
3 Respostas
+ 3
namespace is the keyword of c++
use to include directives.
(such as to include standard class libraries of ANSI C++ we write "using namespace std")
+ 3
It is used to avoid writing std:: before every function from iostream. It shows you that you are using std class function. std means standard
+ 1
thanks....