R
Rolf Magnus
Peng said:For example, at the beginning of the C++ program,
I say "using namespace std;"
However, in the middle of the program, I want to disable "using
namespace std;".
Do you know how to do that?
The answer is: not.
You can't do it. That's the reason why you shouldn't write "using namespace
std;" in the first place.