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

51,839 answers

573 users

How to count the total duplicate elements in int array using C

1 Answer

0 votes
#include <stdio.h>

int count_duplicates(int arr[], int arr_size) {
    int dup_count = 0;

    for (int i = 0; i < arr_size; i++) {
       for(int j = i + 1; j < arr_size; j++) {
            if(arr[i] == arr[j]) {
                dup_count++;
                break;
            }
       }
    }
    
    return dup_count;
}

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

    printf("%i\n", count_duplicates(arr, arr_size));

    return 0;
}



/*
run:

3

*/

 



answered Mar 31, 2019 by avibootz

Related questions

1 answer 151 views
1 answer 144 views
1 answer 234 views
1 answer 163 views
1 answer 125 views
1 answer 180 views
...