Namespace clashing and it's dangers

In short if you intend to use: using namespace std; you run the risk of two names clashing within the library of code because certain things can have similar names in the library code it’s best to stick to using the prior std method unless you can manage to avoid name clashes like a name clash wizard. It might be faster in short term but in long term it will just cause you nothing but problems.

Privacy & Terms