manipulating string in c++

Introduction-:  A string is a sequence of character. we know that the c++ does not  support a build string type. We have use earlier null terminated character array to store and manipulate string. These string are called C string or C style string. ANSI standard c++ now provide a special new class called string. this … Read more