As you delve into the world of C++ programming, understanding best practices and avoiding common pitfalls is key to producing efficient, secure, an...
For further actions, you may consider blocking this person and/or reporting abuse
for 4) Avoid Global Use of using namespace
I would say "Never ever use using namespace in a header file".
using namespace in .cpp file is not that bad. But using it in header will contaminate all the file that include, directly or indirectly, this header. Ex (based on true story):
CustomMemoryManager.h
SomeFile.h
SomeOtherFile.h
AgainAnotherFile.h
AndYetAnotherFile.cpp
And then, good luck to find the leak...
You should (but don't) give examples of everything you mention.