write a program to display the frequency of each element in
a given array in c language



write a program to display the frequency of each element in a given array in c language..

Answer / gaurav gangopadhyay

#include<stdio.h>
#include<conio.h>
void main()
{
char ch[10],stk[10];
int i=0;frq[10],b=-1,k,j;
printf("Enter string:");
gets(ch);
while(ch[i]!='\0')
{
if(b==-1)
{
b++;
stk[b]=ch[i];
frq[b]=frq[b]+1;
}
else
{
k=0;
for(j=0;j<=b;j++)
{
if(stk[j]==ch[i])
{
frq[j]=frq[j]+1;
k=1;
break;
}
}
if(k==0)
{
b++;
stk[b]=ch[i];
frq[b]=frq[b]+1;
}
}
i++;
}
for(i=0;i<=b;i++)
printf("\nNo of %c=%d",stk[i],frq[i]);
getch();
}

Is This Answer Correct ?    4 Yes 12 No

Post New Answer

More C Interview Questions

Is c still used?

0 Answers  


In how much time you will write this c program? Prime nos from 1 to 1000

2 Answers   TCS,


What is structure padding ?

3 Answers   HP,


What is 'bus error'?

0 Answers  


Was 2000 a leap year?

0 Answers  






what is the size of an integer variable?

4 Answers  


What are the different types of C instructions?

0 Answers   InterGraph,


Explain how can I convert a number to a string?

0 Answers  


What is difference between structure and union in c programming?

0 Answers  


what is meant by c

9 Answers   INiTS,


What is the main difference between calloc () and malloc ()?

0 Answers  


What is the use of function in c?

0 Answers  


Categories