C++ String Basics
C++ strings store textual information. The string variable has a sequence of characters enclosed by double quotes. In C++ string basics, we cover following topics. Types of strings How to initialise strings ? How to read input strings ? Types Of StringsA string is a character array terminated by a null (\0)character. The C++ language … Read more