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,990 questions

51,935 answers

573 users

How to count appearance of all values in int array using C

1 Answer

0 votes
#include <stdio.h>

void count_appearance_all(int arr[], int arr_size, int count[]) {
    for (int i = 0; i < arr_size; i++) {
        count[arr[i]]++;
    }
}

int main()
{
    int arr[] = {1, 2, 3, 4, 4, 4, 5, 7, 8, 8, 8, 8, 9, 9}; 
    int count[10] = {0};
    int arr_size = sizeof(arr)/sizeof(arr[0]);

    count_appearance_all(arr, arr_size, count);
    
    for (int i = 0; i < 10; i++) {
        if (count[i] != 0) {
            printf("%i %i\n", i, count[i]);
        }
    }

    return 0;
}



/*
run:

1 1
2 1
3 1
4 3
5 1
7 1
8 4
9 2

*/

 



answered Mar 31, 2019 by avibootz

Related questions

1 answer 242 views
1 answer 152 views
2 answers 229 views
1 answer 170 views
1 answer 149 views
...