Mega Code Archive

 
Categories / C++ Tutorial / Language Basics
 

Using namespace in program block

#include <iostream.h> namespace first {   int var = 5; } namespace second {   double var = 3.1416; } int main () {   {     using namespace first;     cout << var << endl;   }   {     using namespace second;     cout << var << endl;   }   return 0; } 5 3.1416