0
Why we use namespace std; in c++?
2 Antworten
+ 2
namespace std contain cin and cout which you use in your programs ,
cout<<"hello";
If you dont write using namespace std you should write
std::cout , or std::cin and other things from std)
0
To perform input and output operations.
It will load libraries to perform basic operation.