C/C++
namespac.txt
Associated article: Migrating to Namespaces
Tags: C/C++
Published source code accompanying the article by Herb Sutter in which he discusses C++ namespaces, a feature most compilers now support.
Migrating to Namespaces
by Herb P. Sutter
Example 1:
(a)
#include <iostream.h>
int main()
{
cout << "hello, world" << endl;
}
(b)
#include <iostream>
int main()
{
std::cout << "hello, world&...


