First page Back Continue Last page Graphics
C++ STRINGS
string is part of the Standard C++ Library
Finally we get to the STL string class. This is not the C type character array that we have seen so far (even though internally it may use an array).
This string class provides a lot more usability and protection.
An example (using command line arguments will be shown after the preliminary coverage)