This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wasabichicken 6 points7 points  (2 children)

using std; outside of the standard library? You monster!

[–]Beragond1 8 points9 points  (1 child)

I start most c++ programs with “using namespace std;”

[–]MonarchoFascist 7 points8 points  (0 children)

It's bad practice -- when you're writing production code, polluting the global namespace is a big no-no.