Searching for: Namespace in C++
Namespaces
Language: C++

Namespaces allow the grouping of named entities within a certain area in a program. It is used to reduce collisions of entities with the same name.

Vectors
Language: C++

C++ has a vector class within the std namespace. A vector is similar to an array, in a sense where a series of elements are stored with the same variable name. Unlike arrays, vectors are dynamically sized, which is a major advantage.

String Variables
Language: C++

String variables are variables used to hold strings.

Output
Language: C++

Used to output directly to the screen using the <iostream> header file.


  Next Page >