Why it is important to write "using namespace std" in C++ program?
In this article, we will discuss the use of "using namespace std" in the C++ program. Need of Namespace in C++As the same name can't be given to multiple variables, functions, classes, etc. in the same scope. So, to overcome this situation, namespace is introduced. Example Below is the C++ program i