+ 1
What is the importance of namespace std in c++
3 Answers
+ 1
Sampaul Jose
So when we run a program to print something, âusing namespace stdâ says if you find something that is not declared in the current scope go and check std. using namespace std; are used. It is because computer needs to know the code for the cout, cin functionalities and it needs to know which namespace they are defined.
0
I understood
Thanks for your response