write a programe returns the number of times the character
appears in the string

Answers were Sorted based on User's Feedback



write a programe returns the number of times the character appears in the string..

Answer / mohanraj

if(a[i]==q)

Is This Answer Correct ?    2 Yes 0 No

write a programe returns the number of times the character appears in the string..

Answer / vignesh1988i

#include<stdio.h>
#include<conio.h>
void main()
{
char a[50],q;
int count =0;
printf("enter the sring :");
gets(a);
printf("enter the char. to be searched :");
scanf("%c",&q);
for(int i=0;a[i]!='\0';i++)
{
if(a[i]==f)
count++;
}
printf("the occurance is :%d",count);
getch();
}

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More C Interview Questions

Describe explain how arrays can be passed to a user defined function

0 Answers  


write a program that explain #define and # undef directive

1 Answers  


What are the primitive data types in c?

0 Answers  


code for inverse a matrix

0 Answers  


Why do u use # before include in a C Progam?

9 Answers   IBM,


What is extern c used for?

0 Answers  


how c source file in converted to exe file

5 Answers   KPIT,


Write a program of prime number using recursion.

0 Answers   Aspiring Minds,


How are 16- and 32-bit numbers stored?

0 Answers  


What does p mean in physics?

0 Answers  


what are the languages used in c#?

3 Answers   Infosys,


What is the stack in c?

0 Answers  


Categories