write a program to display the frequency of each element in
a given array in c language
Answer Posted / 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 View All Answers
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What are the advantages and disadvantages of a heap?
What is openmp in c?
Why void main is used in c?
How can I get back to the interactive keyboard if stdin is redirected?
What is #line?
In which layer of the network datastructure format change is done
Differentiate Source Codes from Object Codes
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
write a c program for swapping two strings using pointer
Can you tell me how to check whether a linked list is circular?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Which driver is a pure java driver
What is the difference between int main and void main in c?