0
What is the use and important of including... "Namespace std" c++
2 Answers
+ 1
That includes stuff like cout, cin, string, vector, map, etc.
forexample:
cout << âHello Yakubu Isaac.â << endl;
// Here it is necessary to put âusing namespace stdâ on the top of code.
std::cout << " Hello Yakubu Isaacâ << std::endl;
// Here there is no need to put âusing namespace stdâ on the top of code.
+ 1
Thanks