Author Archive

The string class in C++ »

In C++ a string is implemented as an instance of the string class. Inorder to use the functions of this class, the following include statement must be part of your program code: #include <string> As the string class is a member of the namespace  std , an instance of this class is declared with the […]