Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

what is namespace in c++

A namespace is a declarative region that provides a scope to the 
  identifiers (the names of types, functions, variables, etc) inside 
  it. Namespaces are used to organize code into logical groups and to
  prevent name collisions that can occur especially when your code base
  includes multiple libraries
 
PREVIOUS NEXT
Tagged: #namespace
ADD COMMENT
Topic
Name
7+6 =