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

String in c language

String definition -:  A string is a sequence of characters that is treated as a single data item.  Any group of character (except double quote sign) defined between double quotation marks is a string constant as like ” Vikarm is always right ” if we want to include a double quote in the string to … Read more