how to access the index of string in c++ using string object code example
Example: how to access the element of string in c++
string myString = "Hello";
cout << myString[0];
// Outputs H
string myString = "Hello";
cout << myString[0];
// Outputs H