Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to count character occurrences in a string with C++

1 Answer

0 votes
#include <iostream>
#include <string>

using std::cout;
using std::endl;

int main()
{
	int letters[255];
	std::string s = "c c++ c# java\n";

	for (int i = 0; i < 255; i++) letters[i] = 0;
	
	for (int i = 0; i < s.length(); i++) 
		if (s[i] != '\n')
			letters[int(s[i])]++;

	for (int i = 0; i < 255; i++) {
		if (letters[i] != 0)
			cout << (char)(i) << ": " << letters[i] << endl;
	}

	return 0;
}

/*
run:

: 3
#: 1
+: 2
a: 2
c: 3
j: 1
v: 1

*/

 



answered Jun 13, 2018 by avibootz

Related questions

2 answers 222 views
1 answer 177 views
1 answer 202 views
1 answer 173 views
1 answer 176 views
1 answer 106 views
1 answer 103 views
...