Inline Nested Namespace in C++




This video tutorial explains about the inline nested namespace in c++ programming.
You are gonna learn what is an inline nested namespace, how to define a inline  namespace, how to access the members of an inline namespace , what is the use of inline namespace in detail with example.

source code for this tutorial

#include 

using namespace std;

namespace AppVersion{
    namespace version1{
        void display(){
            cout <<"display function from the version 1"<
                  
Back To Top