STRING in C++
What is string?
It is a sequence of character that can be declared using string keyword.
In C style string , we use char keyword but in C++ style string, we use string keyword.
DECLARATION OF STRING
SYNTAX:
string s="itsmekali";
string str("itsmeka...
kalibaranwal.hashnode.dev6 min read