write a programe returns the number of times the character
appears in the string
Answers were Sorted based on User's Feedback
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 |
Describe explain how arrays can be passed to a user defined function
write a program that explain #define and # undef directive
What are the primitive data types in c?
code for inverse a matrix
Why do u use # before include in a C Progam?
What is extern c used for?
how c source file in converted to exe file
Write a program of prime number using recursion.
How are 16- and 32-bit numbers stored?
What does p mean in physics?
what are the languages used in c#?
What is the stack in c?