Answers for "number of characters in the user's string c++"

C++
0

count number of char in a string c++

string str_V;
char chr
getline(cin, str_V);
for(i=0; i<=str.length; i++)
{
 	  if(str[i]==chr)
      {
        space++
       }
}
Posted by: Guest on May-09-2021

Code answers related to "number of characters in the user's string c++"

Browse Popular Code Answers by Language