C & C++

872 readers
0 users here now

founded 5 years ago
MODERATORS
1
 
 
2
 
 

cross-posted from: https://lemmy.ml/post/70930

I am learning C++ and in my book using namespace std is written in every program. I understand that std::cout <<"hello"; can be simply written as cout << "hello"; by using namespace std.

Why?