Knowledge is Power.

  • Who you are ?

    Working on machines without understanding them ? Then you should be here..

  • Where you are ?

    Geographical location should not become a barrier to Share our knowledge.

  • What do you do ?

    Puzzles and Interview question are intended to be discussed here.

      • loading tweets

    Sunday, March 28, 2010

    Namespaces Namespaces allow to group entities like classes, objects and functions under a name. This way the global scope can be divided in "sub-scopes", each one with its own name.The format of namespaces is:namespace identifier{ entities}Where identifier is any valid identifier and entities is the set of classes, objects and functions that are included within the namespace. For example:1234 namespace myNamespace{int a, b;}In ...