get a strings length c++ code example
Example 1: length of string in c++
str.length();
Example 2: length of a string c++
string str ="hello world";
//different ways to find length of a string:
str.length();
str.size();
str.length();
string str ="hello world";
//different ways to find length of a string:
str.length();
str.size();