Hi Guys,
Is a reason why people sometimes don't use namespace std as it is i.e
using namespace std;
instead they opt for something like:
using std::cout;
using std::cerr;
using std::endl;
using std::showbase;
using std::noshowbase ;
using std::hex;
using std::dec;
Is any difference?
Is a reason why people sometimes don't use namespace std as it is i.e
using namespace std;
instead they opt for something like:
using std::cout;
using std::cerr;
using std::endl;
using std::showbase;
using std::noshowbase ;
using std::hex;
using std::dec;
Is any difference?
Comment