C Program to Count Frequency of each Element in an Array

C Program to Count Frequency of each Element in an Array

C program to count the frequency of each element in an array; Through this tutorial, we will learn how to count the frequency of each element in an array using standard method and function in c programs.

Programs to Count Frequency of each Element in an Array in C

To count the frequency of each element in an array using standard method and function in c programs:

  • C Program to Count Frequency of each Element in an Array using Standard Method
  • C Program to Count Frequency of each Element in an Array using Function

C Program to Count Frequency of each Element in an Array using Standard Method

#include <stdio.h>
 
int main()
{
    int a[10000],b[10000],i,j,n,c=0 ;
   
    printf("Enter size of the array : ");
    scanf("%d", &n);
 
    printf("Enter elements in array : ");
    for(i=0; i<n; i++)
    {
        scanf("%d",&a[i]);
    }
    
  for(i=0; i<n; i++)
    {
        c=1;
        if(a[i]!=-1)
		{
		    for(j=i+1; j<n; j++)
     
            {
        	   if(a[i]==a[j])
        	    {
			       c++;
			       a[j]=-1;
		       }
	       }
	       b[i]=c;
		}
         
   
          
    }
     
        
         
 for(i=0; i<n; i++)
    {
         if(a[i]!=-1)
        {
        	printf("no of %d is %d \n",a[i],b[i]);
 
		} 
         
    }    
    return 0;
} 

The output of the above c program; as follows:

Enter size of the array : 5
Enter elements in array : 5 2 5 6 4
no of 5 is 2 
no of 2 is 1 
no of 6 is 1 
no of 4 is 1 

C Program to Count Frequency of each Element in an Array using Function

#include <stdio.h>
 
count(int *a,int *b,int n)
{ 
    int i,c,j;
    for(i=0; i<n; i++)
    {
        c=1;
        if(a[i]!=-1)
		{
		    for(j=i+1; j<n; j++)
     
            {
        	   if(a[i]==a[j])
        	    {
			       c++;
			       a[j]=-1;
		       }
	       }
	       b[i]=c;
		}
         
   
          
    }
     
 }
 
 print(int *a,int *b,int n)
 { 
    int i;
    for(i=0; i<n; i++)
    {
         
        if(a[i]!=-1)
        {
        	printf("no of %d is %d \n",a[i],b[i]);
 
		} 
         
    }
 	
 }
int main()
{
    int a[10000],b[10000],i,n;
   
    printf("Enter size of the array : ");
    scanf("%d", &n);
 
    printf("Enter elements in array : ");
    for(i=0; i<n; i++)
    {
        scanf("%d",&a[i]);
    }
    
    count(a,b,n);
    
	print(a,b,n);   
    
	return 0;
}

The output of the above c program; as follows:

Enter size of the array : 5 
Enter elements in array : 1 2 34 44 44
no of 1 is 1 
no of 2 is 1 
no of 34 is 1 
no of 44 is 2 

Recommended C Programs

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *