cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
C++ namespace with exception
C++ namespace with exception
Jan 7, 2020 at 11:29pm UTC
marhuum
(181)
is there any in C++ to use namespace with one, two, or three name exceptions ?
Jan 8, 2020 at 1:31am UTC
mbozzi
(3932)
The presence of a
using
statement
using namespace std;
Doesn't prevent the programmer from fully qualifying a name.
distance(begin, end); /* or */ std::distance(begin, end);
Topic archived. No new replies allowed.