cout << "Enter a string: "; getline(cin, str); cout << "Enter a character: "; cin >> character;
int charCount = 0; for (int c = 0; c < str.size(); c++) if (str[c] == character) charCount++; cout << "There is " << charCount << " occurrences of this character in the given string." << endl; getch(); }
Comments
Thanks for your appreciation! If you really liked our service please press like-button beside answer field. Thank you!
best program sir...
Leave a comment