Strings
In this lesson, we'll discuss common string terms before moving onto problems.
We'll cover the following...
String
A string is a sequence of characters; hence it can be represented using an array of characters.
C++ also has a string type that can be used instead of char[].
First, let’s go over ...