Answers for "how to count the amount of characters in a char * in 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 "how to count the amount of characters in a char * in c++"

Browse Popular Code Answers by Language