Write a C++ Program to find frequency of characters of a string object.


Program Code:


#include <iostream>
using namespace std;
int main()
{
int i;
int count = 0;
char ch = 'o';
string name = " smart code for you ";
for ( i = 0; i < name.size();  i++)
{
if (name[i] ==  ch)
{
count = count + 1;
}
}
cout << "Number of  character is = " ;
cout<< count;
return 0;
}

The program output is tested on www.jdoodle.com

Output:

Number of  character is = 3



Thanks
Mukesh Rajput

Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: